extend timeout on health endpoint and cache result for 1 minute

This commit is contained in:
Karol Wypchlo 2021-08-24 19:02:11 +02:00
parent 999a0d85aa
commit 3b4a6bbd58
No known key found for this signature in database
GPG Key ID: C92C016317A964D0
1 changed files with 4 additions and 0 deletions

View File

@ -378,7 +378,11 @@ server {
location /skynet/health {
include /etc/nginx/conf.d/include/cors;
proxy_cache skynet;
proxy_cache_key $request_uri; # use whole request uri (uri + args) as cache key
proxy_cache_valid any 1m; # cache any response for 1 minute
proxy_set_header User-Agent: Sia-Agent;
proxy_read_timeout 5m; # extend the read timeout to 5 minutes
proxy_pass http://siad;
}