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