updated nginx config for cache busting
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Philipp Dormann 2023-02-03 17:18:57 +01:00
parent eccce0795b
commit 8e2b355466
Signed by: philipp
GPG Key ID: 3BB9ADD52DCA4314

View File

@ -11,6 +11,12 @@ http {
rewrite /profile/(.*) /$1 break;
try_files $uri $uri/ /index.html;
add_header Last-Modified $date_gmt;
add_header Cache-Control 'private no-store, no-cache, must-revalidate, proxy-revalidate, max-age=0';
if_modified_since off;
expires off;
etag off;
}
location ~* \.(?:ico|css|gif|jpe?g|png)$ {