Skip to content

Commit

Permalink
Merge pull request #19 from docksal/proxy-buffers
Browse files Browse the repository at this point in the history
Increase proxy buffers to 256k
  • Loading branch information
lmakarov authored Dec 18, 2017
2 parents b16de18 + af32e8f commit 54a9c70
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion conf/nginx/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,9 @@ http {
# Disable output response body bufferring
proxy_buffering off;
# Increase output response headers buffer size (this is separate from proxy_buffering, defaults to 4k)
proxy_buffer_size 8k;
proxy_buffer_size 128k;
proxy_buffers 4 256k;
proxy_busy_buffers_size 256k;

# Fixes random issues with POST requests
# See https://github.com/dockerfile/nginx/issues/4#issuecomment-209440995
Expand Down

0 comments on commit 54a9c70

Please sign in to comment.