docs(bash): 更新 Note网站的部署脚本和 Nginx 配置
- 新增 Git 仓库的 Nginx 配置文件和 README指南 - 更新 Note网站的 README,增加部署脚本和定时任务说明 - 新增 Note 网站的 Nginx 配置文件
This commit is contained in:
29
www/git/README.md
Normal file
29
www/git/README.md
Normal file
@@ -0,0 +1,29 @@
|
||||
# Git 仓库
|
||||
|
||||
## Nginx 配置
|
||||
|
||||
> 该配置需要在 `/etc/nginx/ssl/` 目录下创建 `fullchain.pem` 和 `privkey.pem` 证书文件文件。
|
||||
|
||||
下载配置
|
||||
|
||||
```bash
|
||||
curl -fsSL https://git.sugarscat.cn/me/bash/-/raw/main/www/git/nginx.conf > /etc/nginx/sites-available/git.sugarscat.cn
|
||||
```
|
||||
|
||||
启用配置
|
||||
|
||||
```bash
|
||||
ln -s /etc/nginx/sites-available/git.sugarscat.cn /etc/nginx/sites-enabled/git.sugarscat.cn
|
||||
```
|
||||
|
||||
测试配置
|
||||
|
||||
```bash
|
||||
nginx -t
|
||||
```
|
||||
|
||||
重启 nginx
|
||||
|
||||
```bash
|
||||
systemctl restart nginx
|
||||
```
|
||||
Reference in New Issue
Block a user