refactor: 将目录结构从 www 重命名为 nginx

- 将 default、git、note 目录下的 README.md 文件从 www目录移动到 nginx 目录
- 更新文件内容中的下载路径,从 www 改为 nginx- 修改 note 目录下的 deploy.sh 脚本执行路径
This commit is contained in:
2025-03-15 01:49:34 +08:00
parent 1b2aa6040d
commit 3e73ce4891
10 changed files with 6 additions and 6 deletions

29
nginx/default/README.md Normal file
View File

@@ -0,0 +1,29 @@
# default
## Nginx 配置
> 该配置需要在 `/etc/nginx/ssl/` 目录下创建 `fullchain.pem` 和 `privkey.pem` 证书文件。
下载配置
```bash
curl -fsSL https://git.sugarscat.cn/me/bash/-/raw/main/nginx/default/nginx.conf > /etc/nginx/sites-available/default
```
启用配置
```bash
ln -s /etc/nginx/sites-available/default /etc/nginx/sites-enabled/default
```
测试配置
```bash
nginx -t
```
重启 nginx
```bash
systemctl restart nginx
```