fix: config
All checks were successful
构建并部署前端到生产环境 / build-and-deploy (push) Successful in 1m0s

This commit is contained in:
luo
2026-07-29 11:22:10 +08:00
parent f56e7cb922
commit ecb594dbb6
2 changed files with 11 additions and 1 deletions

View File

@@ -17,6 +17,16 @@ server {
add_header Content-Type text/plain;
}
location /api/ {
proxy_pass https://cmp-api.boss160.cn;
proxy_ssl_server_name on;
proxy_ssl_name cmp-api.boss160.cn;
proxy_set_header Host cmp-api.boss160.cn;
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;
}
location /h5/ {
try_files $uri $uri/ /h5/index.html;
}