finance-tools/nginx/nginx.conf

37 lines
1.1 KiB
Nginx Configuration File
Raw Normal View History

2026-06-21 20:28:06 +00:00
upstream investor_app {
server app:3000;
keepalive 16;
}
server {
listen 80;
server_name _;
client_max_body_size 2m;
# 靜態資源快取Vite 產物帶 hash可長期快取
location ~* \.(?:js|css|woff2?|ttf|eot|svg|png|jpg|jpeg|gif|webp|ico)$ {
proxy_pass http://investor_app;
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 $scheme;
expires 7d;
add_header Cache-Control "public, immutable";
}
location / {
proxy_pass http://investor_app;
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 $scheme;
proxy_set_header Connection "";
proxy_connect_timeout 60s;
proxy_send_timeout 300s;
proxy_read_timeout 300s;
}
}