Merge pull request #828 from SkynetLabs/pj/increase-request-timeout

Request Timeouts
This commit is contained in:
Christopher Schinnerl 2021-06-04 12:29:30 +02:00 committed by GitHub
commit 1bd8f1e02e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 0 deletions

View File

@ -333,7 +333,11 @@ server {
limit_conn upload_conn_rl 1;
client_max_body_size 1000M; # make sure to limit the size of upload to a sane value
# increase request timeouts
proxy_read_timeout 600;
proxy_send_timeout 600;
proxy_request_buffering off; # stream uploaded files through the proxy as it comes in
proxy_set_header Expect $http_expect;
proxy_set_header User-Agent: Sia-Agent;
@ -391,7 +395,11 @@ server {
include /etc/nginx/conf.d/include/cors;
client_max_body_size 50M; # tus chunks size is 40M + leaving 10M of breathing room
# increase request timeouts
proxy_read_timeout 600;
proxy_send_timeout 600;
proxy_request_buffering off; # stream uploaded files through the proxy as it comes in
proxy_set_header Expect $http_expect;