| 12345678910111213141516171819202122 |
- server {
- listen 80;
- server_name _;
- root /usr/share/nginx/html;
- index index.html;
- # SPA fallback — serve index.html for all routes
- location / {
- try_files $uri $uri/ /index.html;
- }
- # Cache static assets
- location ~* \.(js|css|woff2?|png|jpg|svg|ico)$ {
- expires 1y;
- add_header Cache-Control "public, immutable";
- }
- # No cache for the HTML entry point
- location = /index.html {
- add_header Cache-Control "no-cache";
- }
- }
|