ops: Tweak nginx cache valid time for unfurler/slurper

This commit is contained in:
wiz
2023-08-19 23:27:08 +09:00
parent 15bd7bc068
commit 655eb31107

View File

@@ -136,7 +136,7 @@ location @mempool-space-unfurler {
proxy_cache_background_update on;
proxy_cache_use_stale updating;
proxy_cache unfurler;
proxy_cache_valid 200 10m;
proxy_cache_valid 200 30d;
proxy_redirect off;
}
@@ -151,6 +151,6 @@ location @mempool-space-slurper {
proxy_cache_background_update on;
proxy_cache_use_stale updating;
proxy_cache slurper;
proxy_cache_valid 200 10m;
proxy_cache_valid 200 365d;
proxy_redirect off;
}