From f281e84396d59ac754cd50b5a0443e087d23ec3b Mon Sep 17 00:00:00 2001 From: wiz Date: Thu, 6 May 2021 21:19:45 +0900 Subject: [PATCH] Disable caching of electrs endpoints in production/nginx.conf --- production/nginx.conf | 8 -------- 1 file changed, 8 deletions(-) diff --git a/production/nginx.conf b/production/nginx.conf index 67f3149c2..bcda4adf5 100644 --- a/production/nginx.conf +++ b/production/nginx.conf @@ -153,8 +153,6 @@ http { access_log /dev/null; location / { proxy_pass http://electrs-mainnet; - proxy_cache mainnet; - proxy_cache_valid 200 2s; } } @@ -169,8 +167,6 @@ http { access_log /dev/null; location / { proxy_pass http://electrs-liquid; - proxy_cache liquid; - proxy_cache_valid 200 2s; } } @@ -185,8 +181,6 @@ http { access_log /dev/null; location / { proxy_pass http://electrs-testnet; - proxy_cache testnet; - proxy_cache_valid 200 2s; } } @@ -200,8 +194,6 @@ http { access_log /dev/null; location / { proxy_pass http://electrs-signet; - proxy_cache signet; - proxy_cache_valid 200 2s; } }