50 lines
1.6 KiB
Nginx Configuration File
50 lines
1.6 KiB
Nginx Configuration File
# =============================================================================
|
|
# ©AngelaMos | 2026
|
|
# dev.nginx
|
|
# =============================================================================
|
|
# Development server block: proxies to Vite dev server with HMR.
|
|
# /api is resolved at request time so nginx still boots when the backend
|
|
# (the `backend` compose profile) is not running, returning 502 until it is.
|
|
|
|
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
server_name _;
|
|
|
|
access_log /var/log/nginx/access.log main_timed;
|
|
error_log /var/log/nginx/error.log debug;
|
|
|
|
add_header Cache-Control "no-store, no-cache, must-revalidate" always;
|
|
|
|
location /health {
|
|
access_log off;
|
|
return 200 "healthy\n";
|
|
add_header Content-Type text/plain;
|
|
}
|
|
|
|
location /api/ {
|
|
resolver 127.0.0.11 ipv6=off valid=10s;
|
|
set $tlsfp_upstream tlsfp;
|
|
proxy_pass http://$tlsfp_upstream:8080;
|
|
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_read_timeout 30s;
|
|
}
|
|
|
|
location / {
|
|
proxy_pass http://frontend_dev;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection $connection_upgrade;
|
|
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_read_timeout 60s;
|
|
proxy_buffering off;
|
|
}
|
|
}
|