server { listen 80; root /usr/share/nginx/html; index index.html; # Cache static assets location ~* \.(js|css|png|svg|ico|woff2)$ { expires 1y; add_header Cache-Control "public, immutable"; } # SPA fallback — serve index.html for all routes location / { try_files $uri $uri/ /index.html; } }