diff --git a/nginx.conf b/nginx.conf index 05302ff..4a5df2b 100644 --- a/nginx.conf +++ b/nginx.conf @@ -4,6 +4,11 @@ server { root /usr/share/nginx/html; index index.html; + # Disable caching for all responses + add_header Cache-Control "no-store, no-cache, must-revalidate, proxy-revalidate, max-age=0"; + add_header Pragma "no-cache"; + expires off; + # Favicon location = /favicon.ico { try_files /favicon.ico =204;