From a99c7bb0683175f2e8d365b7439e64a21f6cdb31 Mon Sep 17 00:00:00 2001 From: Peter Amstutz Date: Mon, 24 Aug 2015 10:49:56 -0400 Subject: [PATCH] 6918: Fix server_name in example nginx config. Remove client_body_buffer_size. --- doc/install/install-keepproxy.html.textile.liquid | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/doc/install/install-keepproxy.html.textile.liquid b/doc/install/install-keepproxy.html.textile.liquid index 69a298a7a7..07e43a8d73 100644 --- a/doc/install/install-keepproxy.html.textile.liquid +++ b/doc/install/install-keepproxy.html.textile.liquid @@ -78,7 +78,7 @@ upstream keepproxy { server { listen [your public IP address]:443 ssl; - server_name keep.example.com + server_name keep.@uuid_prefix@.your.domain ssl on; ssl_certificate /etc/nginx/keep.example.com-ssl.crt; @@ -86,7 +86,6 @@ server { # Clients need to be able to upload blocks of data up to 64MiB in size. client_max_body_size 64m; - client_body_buffer_size 64M; location / { proxy_pass http://keepproxy; -- 2.39.5