Skip to content

Instantly share code, notes, and snippets.

@osmangoninahid
Last active May 19, 2020 16:05
Show Gist options
  • Save osmangoninahid/fb657a79ba9412544518158e85967941 to your computer and use it in GitHub Desktop.
Save osmangoninahid/fb657a79ba9412544518158e85967941 to your computer and use it in GitHub Desktop.
server {
listen 80;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html =404;
add_header Last-Modified $date_gmt;
add_header Cache-Control 'no-store, no-cache, must-revalidate, proxy-revalidate, max-age=0';
if_modified_since off;
expires -1;
etag off;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment