3 Commits

Author SHA1 Message Date
0f38229ad0 Merge pull request 'no-cache' (#5) from dev into main
Reviewed-on: #5
2026-07-04 08:26:20 +00:00
faccdf734a no-cache 2026-07-04 13:25:43 +05:00
8522d35d90 Merge pull request 'CORS problem solution' (#4) from cors into dev
Reviewed-on: #4
2026-07-03 07:58:08 +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";
}
}