From 8f172b953ac365e6e94a462e352d8d322285e9b0 Mon Sep 17 00:00:00 2001 From: Indesign Colombia Date: Thu, 14 Apr 2016 14:27:35 -0500 Subject: [PATCH] Fix for "upstream sent too big header" issues #7 In some cases a bigger buffer size would be needed. --- lib/nginx.conf | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/nginx.conf b/lib/nginx.conf index 7f5bb9a..00fe287 100644 --- a/lib/nginx.conf +++ b/lib/nginx.conf @@ -43,7 +43,9 @@ http { # Set upload to sensible value as defaults to 1M if not present client_max_body_size 10M; - + + # Fix for "upstream sent too big header" issues #7 - it may need a bigger size for some apps + proxy_buffer_size 8k; location / { proxy_pass http://site/;