Files
script/www/note
2fd25722cc docs: 更新 README 文件标题
- 修改 www/default/README.md 文件标题为 "default"
- 修改 www/git/README.md 文件标题为 "git.sugarscat.cn"
- 修改 www/note/README.md 文件标题为 "note.sugarscat.cn"
- 简化 www/README.md 文件的标题结构
2025-03-13 23:02:54 +08:00
..
2025-03-13 23:02:54 +08:00

note.sugarscat.cn

下载部署脚本

mkdir -p /opt/www/note
cd /opt/www/note
curl -fsSL https://git.sugarscat.cn/me/bash/-/raw/main/www/note/deploy.sh | sh

定时执行脚本

crontab -e

每天天 0 点 执行一次:

0 0 * * * /opt/www/note/deploy.sh >> /opt/www/note/deploy.log 2>&1

查看定时器列表

crontab -l

Nginx 配置

该配置需要在 /etc/nginx/ssl/ 目录下创建 fullchain.pemprivkey.pem 证书文件。

下载配置

curl -fsSL https://git.sugarscat.cn/me/bash/-/raw/main/www/note/nginx.conf > /etc/nginx/sites-available/note.sugarscat.cn

启用配置

ln -s /etc/nginx/sites-available/note.sugarscat.cn /etc/nginx/sites-enabled/note.sugarscat.cn

测试配置

nginx -t

重启 nginx

systemctl restart nginx