diff --git a/nginx.conf b/nginx.conf index 6ca85f8..d71b2d4 100644 --- a/nginx.conf +++ b/nginx.conf @@ -4,9 +4,11 @@ server { index index.html; root /usr/share/nginx/html; - gzip on; - location / { try_files $uri $uri/ /index.html; + + add_header Cache-Control "no-store, no-cache, must-revalidate, proxy-revalidate, max-age=0"; + add_header Pragma "no-cache"; + expires off; } }