Avoid caching

This commit is contained in:
Alexandre
2023-02-08 11:44:33 +01:00
committed by GitHub
parent e2a9fdebba
commit 44056221ba

View File

@@ -6,6 +6,10 @@ server {
location / { location / {
root /vuetorrent/public/; root /vuetorrent/public/;
# avoid cache
expires -1; # kill cache
proxy_no_cache 1; # don't cache it
proxy_cache_bypass 1; # even if cached, don't try to use it
} }
location /api { location /api {