server { listen 80; server_name _; root /usr/share/nginx/html; index index.html; # Serve static assets with caching location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg|woff|woff2|ttf|eot)$ { expires 1y; add_header Cache-Control "public, immutable"; try_files $uri =404; } # SPA fallback location / { try_files $uri $uri/ /index.html; } gzip on; gzip_types text/plain text/css application/javascript application/json image/svg+xml; gzip_min_length 1024; }