docs(bash): 更新 Note网站的部署脚本和 Nginx 配置

- 新增 Git 仓库的 Nginx 配置文件和 README指南
- 更新 Note网站的 README,增加部署脚本和定时任务说明
- 新增 Note 网站的 Nginx 配置文件
This commit is contained in:
2025-03-13 19:55:26 +08:00
parent edc59fea37
commit 8059df501e
4 changed files with 176 additions and 0 deletions

View File

@@ -1,2 +1,55 @@
# Note 网站
## 下载部署脚本
```bash
mkdir -p /opt/www/note
cd /opt/www/note
curl -fsSL https://git.sugarscat.cn/me/bash/-/raw/main/www/note/deploy.sh | sh
```
## 定时执行脚本
```bash
crontab -e
```
每天天 0 点 执行一次:
```bash
0 0 * * * /opt/www/note/deploy.sh >> /opt/www/note/deploy.log 2>&1
```
查看定时器列表
```bash
crontab -l
```
## Nginx 配置
> 该配置需要在 `/etc/nginx/ssl/` 目录下创建 `fullchain.pem` 和 `privkey.pem` 证书文件文件。
下载配置
```bash
curl -fsSL https://git.sugarscat.cn/me/bash/-/raw/main/www/note/nginx.conf > /etc/nginx/sites-available/note.sugarscat.cn
```
启用配置
```bash
ln -s /etc/nginx/sites-available/note.sugarscat.cn /etc/nginx/sites-enabled/note.sugarscat.cn
```
测试配置
```bash
nginx -t
```
重启 nginx
```bash
systemctl restart nginx
```