server { listen 3048; server_name _; root /usr/share/nginx/html; index index.html; # Gzip static assets gzip on; gzip_types text/plain text/css application/javascript application/json image/svg+xml; gzip_min_length 1024; # Long-lived cache for hashed assets; no-cache for entry points location ~* \.(js|css|woff2?|png|jpg|svg|ico)$ { add_header Cache-Control "public, max-age=31536000, immutable"; try_files $uri =404; } # SPA fallback — all routes serve index.html location / { add_header Cache-Control "no-cache, no-store, must-revalidate"; try_files $uri $uri/ /index.html; } }