36 lines
1.0 KiB
Nginx Configuration File
36 lines
1.0 KiB
Nginx Configuration File
# =============================================================================
|
|
# ©AngelaMos | 2026
|
|
# dev.nginx
|
|
# =============================================================================
|
|
# Development server block: proxies to Vite dev server with HMR
|
|
|
|
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 / {
|
|
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;
|
|
}
|
|
}
|