无限层级笔记软件Trilium安装使用教程
简介
Trilium是由加拿大安大略省工程师zadam使用JavaScript语言开发的多层级笔记软件。
软件名字Trilium取自安大略省省花白延龄草(White Trillium),开头的发音像Tree即树状,软件灵感来自NoteCase Pro。主要功能有无限层级目录、富文本编辑和Markdown编辑(支持数学公式)、每日日记、笔记历史、集成Excalidraw、笔记加密、网页剪藏、关系链图等等,更高级的功能有同步服务器、脚本、REST API、笔记属性。
安装教程
准备好Debian环境
下载Trilium服务端安装包:
解压: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