server { listen 80; root /usr/share/nginx/html; index index.html; # React SPA — serve index.html for all unknown paths location / { try_files $uri $uri/ /index.html; } # Disable caching for the entry point so updates are picked up immediately location = /index.html { add_header Cache-Control "no-store, no-cache, must-revalidate"; } }