server { listen 80; root /usr/share/nginx/html; index index.html; location /health { return 200 '{"status":"ok"}'; add_header Content-Type application/json; } # SPA fallback — all routes serve index.html location / { try_files $uri $uri/ /index.html; } # Cache static assets location /assets/ { expires 1y; add_header Cache-Control "public, immutable"; } }