- 将脚本下载链接中的 "/me/script/-/raw/main/" 替换为 "/i/script/raw/main/" - 更新了多个文件中的脚本下载路径,包括但不限于: - acme/README.md - adguard/README.md - bash/README.md - docker/README.md - nginx/多个子目录的 README.md - python/README.md - uv/README.md
58 lines
914 B
Markdown
58 lines
914 B
Markdown
# note.sugarscat.cn
|
|
|
|
## 下载部署脚本
|
|
|
|
```bash
|
|
mkdir -p /opt/www/note && cd /opt/www/note
|
|
```
|
|
|
|
```bash
|
|
curl -fSL https://i.sugarscat.cn/i/script/raw/main/nginx/note.sugarscat.cn/deploy.sh > deploy.sh && chmod +x deploy.sh
|
|
```
|
|
|
|
## 定时执行脚本
|
|
|
|
```bash
|
|
crontab -e
|
|
```
|
|
|
|
每天天 0 点 执行一次:
|
|
|
|
```bash
|
|
0 0 * * * /opt/nginx/note/deploy.sh >> /opt/www/note/deploy.log 2>&1
|
|
```
|
|
|
|
查看定时器列表
|
|
|
|
```bash
|
|
crontab -l
|
|
```
|
|
|
|
## Nginx 配置
|
|
|
|
> 该配置需要在 `/etc/nginx/ssl/` 目录下创建 `fullchain.crt` 和 `privkey.key` 证书文件。
|
|
|
|
下载配置
|
|
|
|
```bash
|
|
curl -fSL https://i.sugarscat.cn/i/script/raw/main/nginx/note.sugarscat.cn/nginx.conf > /etc/nginx/sites-available/note.sugarscat.cn
|
|
```
|
|
|
|
启用配置
|
|
|
|
```bash
|
|
ln -s /etc/nginx/sites-available/note.sugarscat.cn /etc/nginx/sites-enabled/
|
|
```
|
|
|
|
测试配置
|
|
|
|
```bash
|
|
nginx -t
|
|
```
|
|
|
|
重启 nginx
|
|
|
|
```bash
|
|
systemctl restart nginx
|
|
```
|