responsive navbar #14

Merged
michael_dileo merged 8 commits from dev into main 2025-08-14 19:43:31 +00:00
Showing only changes of commit 4e22a6c687 - Show all commits

View File

@@ -40,14 +40,21 @@ http {
add_header X-XSS-Protection "1; mode=block" always; add_header X-XSS-Protection "1; mode=block" always;
add_header Referrer-Policy "strict-origin-when-cross-origin" always; add_header Referrer-Policy "strict-origin-when-cross-origin" always;
# Temporary: Disable caching during development
location ~* \.(css|js|png|jpg|jpeg|gif|ico|svg|woff|woff2|ttf|eot)$ { location ~* \.(css|js|png|jpg|jpeg|gif|ico|svg|woff|woff2|ttf|eot)$ {
expires 1w; # expires 1w;
add_header Cache-Control "public, immutable"; # add_header Cache-Control "public, immutable";
add_header Cache-Control "no-cache, no-store, must-revalidate";
add_header Pragma "no-cache";
add_header Expires "0";
} }
location ~* \.html$ { location ~* \.html$ {
expires 1h; # expires 1h;
add_header Cache-Control "public"; # add_header Cache-Control "public";
add_header Cache-Control "no-cache, no-store, must-revalidate";
add_header Pragma "no-cache";
add_header Expires "0";
} }
location /health { location /health {