feat: 添加 bash.sugarscat.cn 的 Nginx 配置和文档说明,更新 note.sugarscat.cn 的部署脚本链接

This commit is contained in:
2025-03-22 19:48:32 +08:00
parent 788cfa3c69
commit 910e9c7713
3 changed files with 79 additions and 1 deletions

View File

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

View File

@@ -0,0 +1,49 @@
server {
listen 80 ;
listen 443 ssl http2 ;
server_name bash.sugarscat.cn;
# 重定向
if ($scheme = http) {
return 301 https://$host$request_uri;
}
# ssl 设置
ssl_certificate /etc/nginx/ssl/fullchain.pem;
ssl_certificate_key /etc/nginx/ssl/privkey.pem;
ssl_protocols TLSv1.3 TLSv1.2 TLSv1.1 TLSv1;
ssl_ciphers EECDH+CHACHA20:EECDH+CHACHA20-draft:EECDH+AES128:RSA+AES128:EECDH+AES256:RSA+AES256:EECDH+3DES:RSA+3DES:!MD5;
ssl_prefer_server_ciphers on;
ssl_session_cache shared:SSL:10m;
ssl_session_timeout 10m;
add_header Strict-Transport-Security "max-age=31536000";
error_page 497 https://$host$request_uri;
proxy_set_header X-Forwarded-Proto https;
ssl_stapling on;
ssl_stapling_verify on;
location ~* ^/docs/ {
root /var/www/bash;
index index.html;
try_files $uri $uri.html $uri/ =404;
error_page 404 /404.html;
error_page 403 /404.html;
}
location ^~ / {
proxy_pass https://git.sugarscat.cn/me/bash/-/raw/main;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header REMOTE-HOST $remote_addr;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header X-Forwarded-Proto $scheme;
proxy_http_version 1.1;
add_header X-Cache $upstream_cache_status;
add_header Strict-Transport-Security "max-age=31536000";
add_header Cache-Control no-cache;
}
}

View File

@@ -7,7 +7,7 @@ mkdir -p /opt/www/note && cd /opt/www/note
```
```bash
curl -fsSL https://git.sugarscat.cn/me/bash/-/raw/main/nginx/note/deploy.sh > deploy.sh && chmod +x deploy.sh
curl -fsSL https://git.sugarscat.cn/me/bash/-/raw/main/nginx/note.sugarscat.cn/deploy.sh > deploy.sh && chmod +x deploy.sh
```
## 定时执行脚本