Merge pull request 'no-cache' (#5) from dev into main

Reviewed-on: #5
This commit was merged in pull request #5.
This commit is contained in:
2026-07-04 08:26:20 +00:00

View File

@@ -7,5 +7,10 @@ server {
location / {
try_files $uri $uri/ /index.html;
# отключаем кеширование вообще пока активная разработка
add_header Cache-Control "no-store, no-cache, must-revalidate, proxy-revalidate, max-age=0";
add_header Pragma "no-cache";
add_header Expires "0";
}
}
}