Skip to content

Commit 411edf4

Browse files
committed
manifest caching: drop from 1s to 0s (expire immediately), so we can hit ratelimit faster (#54)
- mostly for sanity-checking purposes, last release in 0.4.x series. - next release after this will make those configurable.
1 parent 19ff1cc commit 411edf4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nginx.conf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ echo "Docker configured with HTTPS_PROXY=$scheme://$http_host/"
289289
proxy_cache_key $uri;
290290
proxy_intercept_errors on;
291291
proxy_cache_use_stale error timeout http_500 http_502 http_504 http_429;
292-
proxy_cache_valid 1s;
292+
proxy_cache_valid 0s;
293293
error_page 301 302 307 = @handle_redirects;
294294
}
295295

@@ -301,7 +301,7 @@ echo "Docker configured with HTTPS_PROXY=$scheme://$http_host/"
301301
proxy_cache_key $uri;
302302
proxy_intercept_errors on;
303303
proxy_cache_use_stale error timeout http_500 http_502 http_504 http_429;
304-
proxy_cache_valid 1s;
304+
proxy_cache_valid 0s;
305305
error_page 301 302 307 = @handle_redirects;
306306
}
307307

0 commit comments

Comments
 (0)