diff --git a/default.conf b/default.conf index 055234d..d9c551d 100644 --- a/default.conf +++ b/default.conf @@ -21,12 +21,14 @@ server { location / { - try_files $uri @index; + try_files $uri @index; } location @index { - add_header Cache-Control no-cache; - expires 0; - try_files /index.html =404; + add_header Cache-Control public; + add_header Cache-Control no-store; + add_header Cache-Control no-cache; + expires 0; + try_files /index.html =404; } }