X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/39c17737ac69d7693684fe2f95bef0ec235a28bf..cc952178056bf6d29471f6986306fb673dcf394a:/doc/install/install-keepproxy.html.textile.liquid?ds=sidebyside diff --git a/doc/install/install-keepproxy.html.textile.liquid b/doc/install/install-keepproxy.html.textile.liquid index 9f580c0f8b..db24953fcc 100644 --- a/doc/install/install-keepproxy.html.textile.liquid +++ b/doc/install/install-keepproxy.html.textile.liquid @@ -79,22 +79,24 @@ upstream keepproxy { } server { - listen [your public IP address]:443 ssl; - server_name keep.uuid_prefix.your.domain; + listen [your public IP address]:443 ssl; + server_name keep.uuid_prefix.your.domain; - proxy_connect_timeout 90s; - proxy_read_timeout 300s; - proxy_set_header X-Real-IP $remote_addr; + proxy_connect_timeout 90s; + proxy_read_timeout 300s; + proxy_set_header X-Real-IP $remote_addr; + proxy_http_version 1.1; + proxy_request_buffering off; - ssl on; - ssl_certificate /etc/nginx/keep.uuid_prefix.your.domain-ssl.crt; - ssl_certificate_key /etc/nginx/keep.uuid_prefix.your.domain-ssl.key; + ssl on; + ssl_certificate /etc/nginx/keep.uuid_prefix.your.domain-ssl.crt; + ssl_certificate_key /etc/nginx/keep.uuid_prefix.your.domain-ssl.key; # Clients need to be able to upload blocks of data up to 64MiB in size. - client_max_body_size 64m; + client_max_body_size 64m; location / { - proxy_pass http://keepproxy; + proxy_pass http://keepproxy; } } @@ -105,7 +107,7 @@ h3. Tell the API server about the Keepproxy server The API server needs to be informed about the presence of your Keepproxy server. -First, if you don't already have an admin token, create a superuser token: +First, if you don't already have an admin token, create a superuser token. {% include 'create_superuser_token' %}