diff --git a/web/conf/nginx.conf b/web/conf/nginx.conf index 18cc7cd2..04489226 100644 --- a/web/conf/nginx.conf +++ b/web/conf/nginx.conf @@ -25,10 +25,18 @@ server { set $cache_control "no-cache"; + if ($uri = /) { + set $cache_control "no-store"; + } + if ($uri = /msg.html) { set $cache_control "no-store"; } + if ($uri = /index.html) { + set $cache_control "no-store"; + } + add_header Cache-Control $cache_control always; location / {