chore: 重构数据库迁移与 nginx 配置目录
This commit is contained in:
30
nginx配置/auth.api.shumengya.top.conf
Normal file
30
nginx配置/auth.api.shumengya.top.conf
Normal file
@@ -0,0 +1,30 @@
|
||||
server {
|
||||
server_name auth.api.shumengya.top;
|
||||
|
||||
location / {
|
||||
proxy_pass http://10.1.1.233:28080;
|
||||
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 X-Forwarded-Proto $scheme;
|
||||
}
|
||||
|
||||
listen 443 ssl; # managed by Certbot
|
||||
ssl_certificate /etc/letsencrypt/live/auth.shumengya.top/fullchain.pem; # managed by Certbot
|
||||
ssl_certificate_key /etc/letsencrypt/live/auth.shumengya.top/privkey.pem; # managed by Certbot
|
||||
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
|
||||
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
|
||||
|
||||
}
|
||||
server {
|
||||
if ($host = auth.api.shumengya.top) {
|
||||
return 301 https://$host$request_uri;
|
||||
} # managed by Certbot
|
||||
|
||||
|
||||
listen 80;
|
||||
server_name auth.api.shumengya.top;
|
||||
return 404; # managed by Certbot
|
||||
|
||||
|
||||
}
|
||||
30
nginx配置/auth.shumengya.top.conf
Normal file
30
nginx配置/auth.shumengya.top.conf
Normal file
@@ -0,0 +1,30 @@
|
||||
server {
|
||||
server_name auth.shumengya.top;
|
||||
|
||||
location / {
|
||||
proxy_pass http://10.1.1.100:2121/;
|
||||
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 X-Forwarded-Proto $scheme;
|
||||
}
|
||||
|
||||
listen 443 ssl; # managed by Certbot
|
||||
ssl_certificate /etc/letsencrypt/live/auth.shumengya.top/fullchain.pem; # managed by Certbot
|
||||
ssl_certificate_key /etc/letsencrypt/live/auth.shumengya.top/privkey.pem; # managed by Certbot
|
||||
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
|
||||
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
|
||||
|
||||
}
|
||||
server {
|
||||
if ($host = auth.shumengya.top) {
|
||||
return 301 https://$host$request_uri;
|
||||
} # managed by Certbot
|
||||
|
||||
|
||||
listen 80;
|
||||
server_name auth.shumengya.top;
|
||||
return 404; # managed by Certbot
|
||||
|
||||
|
||||
}
|
||||
26
nginx配置/sproutgate-frontend.conf
Normal file
26
nginx配置/sproutgate-frontend.conf
Normal file
@@ -0,0 +1,26 @@
|
||||
server {
|
||||
listen 2121;
|
||||
server_name sproutgate-frontend;
|
||||
|
||||
root /shumengya/www/self-made/sproutgate-frontend;
|
||||
index index.html;
|
||||
|
||||
location / {
|
||||
# SPA fallback
|
||||
try_files $uri $uri/ /index.html;
|
||||
}
|
||||
|
||||
location ~ /\. {
|
||||
deny all;
|
||||
}
|
||||
|
||||
location ^~ /assets/ {
|
||||
expires 30d;
|
||||
add_header Cache-Control "public, immutable";
|
||||
}
|
||||
|
||||
location ~* \.(css|js|map|png|jpg|jpeg|gif|svg|ico|webp|woff2?|ttf|eot)$ {
|
||||
expires 30d;
|
||||
add_header Cache-Control "public, immutable";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user