chore: comment legacy api nginx route
All checks were successful
Deploy to Frontend Servers / deploy (push) Successful in 47s

This commit is contained in:
TerryM
2026-05-24 00:43:18 +08:00
parent 3f0a9f72d9
commit aaebd7ccd1

View File

@@ -1,6 +1,7 @@
# Shared SPA locations. Browser calls same-origin /apnew/api/ + /uploads/ (VITE_API_PREFIX=/apnew). # Shared SPA locations. Browser calls same-origin /apnew/api/ (VITE_API_PREFIX=/apnew).
# /apnew/api/ avoids ALB listener rule that sends /api/* to an unreachable backend target group. # /apnew/api/ avoids ALB listener rule that sends /api/* to an unreachable backend target group.
# Nginx proxies internally to ark-library-backend-1 (Tailscale); Host header for backend TLS. # Nginx proxies internally to ark-library-backend-1 (Tailscale); Host header for backend TLS.
# Legacy /api/ locations are commented below for reference only.
gzip on; gzip on;
gzip_vary on; gzip_vary on;
gzip_proxied any; gzip_proxied any;
@@ -11,9 +12,10 @@ gzip_min_length 256;
location ^~ /apnew/api/admin { location ^~ /apnew/api/admin {
return 404; return 404;
} }
location ^~ /api/admin { # Legacy same-origin /api admin block. Disabled while production uses /apnew/api.
return 404; # location ^~ /api/admin {
} # return 404;
# }
location ^~ /admin { location ^~ /admin {
return 404; return 404;
} }
@@ -32,19 +34,20 @@ location ^~ /apnew/api/ {
proxy_send_timeout 600s; proxy_send_timeout 600s;
} }
location ^~ /api/ { # Legacy same-origin /api proxy. Disabled while production uses /apnew/api.
proxy_pass https://100.93.205.19/api/; # location ^~ /api/ {
proxy_http_version 1.1; # proxy_pass https://100.93.205.19/api/;
proxy_ssl_server_name on; # proxy_http_version 1.1;
proxy_set_header Host api.ark-library.com; # proxy_ssl_server_name on;
proxy_set_header X-Real-IP $remote_addr; # proxy_set_header Host api.ark-library.com;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; # proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-Proto $scheme; # proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
client_max_body_size 512m; # proxy_set_header X-Forwarded-Proto $scheme;
client_body_timeout 600s; # client_max_body_size 512m;
proxy_read_timeout 600s; # client_body_timeout 600s;
proxy_send_timeout 600s; # proxy_read_timeout 600s;
} # proxy_send_timeout 600s;
# }
location ^~ /uploads/ { location ^~ /uploads/ {
proxy_pass https://100.93.205.19/uploads/; proxy_pass https://100.93.205.19/uploads/;