From 563cf7def8184ea5ff8f786da53ea84fa37960b2 Mon Sep 17 00:00:00 2001 From: Torsten Dittmann Date: Tue, 27 May 2025 15:01:09 +0200 Subject: [PATCH] more explicit disabled cache for /console route in nginx config --- docker/nginx.conf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docker/nginx.conf b/docker/nginx.conf index 38eb1d96a..8b75d6404 100644 --- a/docker/nginx.conf +++ b/docker/nginx.conf @@ -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 / {