Skip to content

Instantly share code, notes, and snippets.

@tinhvqbk
Last active September 29, 2025 06:34
Show Gist options
  • Select an option

  • Save tinhvqbk/9f5a8be85445aa8ec91d5a81d12e676a to your computer and use it in GitHub Desktop.

Select an option

Save tinhvqbk/9f5a8be85445aa8ec91d5a81d12e676a to your computer and use it in GitHub Desktop.
server {
server_name _;
listen [::]:80 ipv6only=off;
root /usr/share/nginx/html;
index index.html;
location ~* \.(?:js|css|png|jpg|jpeg|gif|svg|ico|woff2?|ttf|map)$ {
expires 1y;
add_header Cache-Control "public, immutable";
try_files $uri =404;
}
location / {
try_files $uri /index.html;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment