无限层级笔记软件Trilium安装使用教程

开源软件身份卡
名称 Bookstack
开发语言 PHP
官网 官网
代码托管 Github
开发团队 Dan Brown
开源协议 MIT
本文档使用版本 24.05.2
本文档更新日期 2024年9月21日
配套视频教程 B站

Trilium是由加拿大安大略省工程师zadam使用JavaScript语言开发的多层级笔记软件。

软件名字Trilium取自安大略省省花白延龄草(White Trillium),开头的发音像Tree即树状,软件灵感来自NoteCase Pro。主要功能有无限层级目录、富文本编辑和Markdown编辑(支持数学公式)、每日日记、笔记历史、集成Excalidraw、笔记加密、网页剪藏、关系链图等等,更高级的功能有同步服务器、脚本、REST API、笔记属性。

准备好Debian环境

下载Trilium服务端安装包:

文件名:trilium-linux-x64-server-0.63.7.tar.xz
下载地址:城通网盘(访问密码: 7356)
中文版文件名:trilium-cn-linux-x64-server-0.63.7.zip
下载地址:城通网盘(访问密码: 7356)

解压:tar -xvf trilium-linux-x64-server-0.63.7.tar.xz

进入目录:cd trilium-linux-x64-server

后台运行:nohup ./trilium.sh &

浏览器打开:http://192.168.1.99:8080

如果需要使用域名访问,配置Nginx反向代理如下:

server {
  listen 80;
  server_name demo.example.com;
 
  access_log /var/log/nginx/trilium-access.log;
  error_log /var/log/nginx/trilium-error.log;
 
  client_max_body_size 0;
 
  location / {
    proxy_set_header   X-Real-IP $remote_addr;
    proxy_set_header   Host      $host;
    proxy_http_version 1.1;
    proxy_set_header   Upgrade $http_upgrade;
    proxy_set_header   Connection 'upgrade';
    proxy_cache_bypass $http_upgrade;
    proxy_pass         http://127.0.0.1:8080;
 }
}

数据存储目录为/root/.local/share/trilium-data,备份整个目录即可

Chrome系浏览器安装扩展trilium_web_clipper-1.0.1-chrome.zip

  • docs/note/trilium.txt
  • 最后更改: 2025/03/14 22:32
  • ossdate