Merge pull request #1905 from appwrite/fix-disabled-cached-stricter-settings

more explicit disabled cache for /console route in nginx config
This commit is contained in:
Torsten Dittmann
2025-05-27 15:18:48 +02:00
committed by GitHub
+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, no-store";
add_header Pragma "no-cache";
}
location / {