more explicit disabled cache for /console route in nginx config

This commit is contained in:
Torsten Dittmann
2025-05-27 15:01:09 +02:00
parent adb77559c8
commit 563cf7def8
+4
View File
@@ -26,6 +26,10 @@ server {
location /console {
index index.html index.html;
try_files $uri /console/index.html;
expires 0;
add_header Cache-Control "no-cache, must-revalidate";
add_header Pragma no-cache;
}
location / {