chore(deploy): 完成 #35 部署准备

This commit is contained in:
root
2026-03-04 18:42:40 +08:00
parent 3301acf6e6
commit cc775dff45
5 changed files with 168 additions and 1 deletions
+25 -1
View File
@@ -36,6 +36,31 @@ server {
client_max_body_size 50m;
# 健康检查接口
location = /healthz {
proxy_http_version 1.1;
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 https;
proxy_set_header Connection "";
proxy_pass http://wx_service_upstream;
}
# 业务接口(包括 /api/v1 与 /api/expiry
location /api/ {
proxy_http_version 1.1;
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 https;
proxy_set_header Connection "";
proxy_connect_timeout 10s;
proxy_send_timeout 60s;
proxy_read_timeout 60s;
proxy_pass http://wx_service_upstream;
}
location / {
proxy_http_version 1.1;
proxy_set_header Host $host;
@@ -46,4 +71,3 @@ server {
proxy_pass http://wx_service_upstream;
}
}