From: Ward Vandewege Date: Wed, 12 Aug 2020 14:19:07 +0000 (-0400) Subject: documentation: disable download buffering in our sample nginx config for X-Git-Tag: 2.1.0~140 X-Git-Url: https://git.arvados.org/arvados.git/commitdiff_plain/ab92008f810e7cdbea981ce903670621c54c082e documentation: disable download buffering in our sample nginx config for keep-web and keepproxy. This helps when the clients are far away/slow. No issue # Arvados-DCO-1.1-Signed-off-by: Ward Vandewege --- diff --git a/doc/install/install-keep-web.html.textile.liquid b/doc/install/install-keep-web.html.textile.liquid index b31827bf70..24f37bfb4f 100644 --- a/doc/install/install-keep-web.html.textile.liquid +++ b/doc/install/install-keep-web.html.textile.liquid @@ -142,6 +142,7 @@ server { client_max_body_size 0; proxy_http_version 1.1; proxy_request_buffering off; + proxy_max_temp_file_size 0; } } diff --git a/doc/install/install-keepproxy.html.textile.liquid b/doc/install/install-keepproxy.html.textile.liquid index ae6bd3989c..b4edd4f57b 100644 --- a/doc/install/install-keepproxy.html.textile.liquid +++ b/doc/install/install-keepproxy.html.textile.liquid @@ -66,6 +66,7 @@ server { proxy_set_header X-Real-IP $remote_addr; proxy_http_version 1.1; proxy_request_buffering off; + proxy_max_temp_file_size 0; ssl_certificate /YOUR/PATH/TO/cert.pem; ssl_certificate_key /YOUR/PATH/TO/cert.key;