Docker nginx should force reload of every script/css file to ease debugging.

This commit is contained in:
Samuel Clay 2021-06-28 16:19:48 -04:00
parent adf8204a0c
commit e23cf14b29

View file

@ -11,6 +11,12 @@ server {
real_ip_header X-Forwarded-For;
real_ip_recursive on;
# kill cache
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 off;
# if ($host = 'newsblur.com') {
# rewrite ^/(.*)$ https://www.newsblur.com/$1 permanent;
# }