aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--nginx-common/conf/nginx.conf7
1 files changed, 6 insertions, 1 deletions
diff --git a/nginx-common/conf/nginx.conf b/nginx-common/conf/nginx.conf
index e69dd9c..c04990a 100644
--- a/nginx-common/conf/nginx.conf
+++ b/nginx-common/conf/nginx.conf
@@ -25,7 +25,12 @@ http {
25 keepalive_timeout 128; 25 keepalive_timeout 128;
26 26
27 # Try to avoid buffering requests to disk 27 # Try to avoid buffering requests to disk
28 client_body_buffer_size 1024k; 28 # This is about 4MB
29 client_body_buffer_size 4000k;
30
31 # Try to avoid buffering backend responses to disk
32 # This is about 4MB
33 proxy_buffers 1000 4k;
29 34
30 gzip on; 35 gzip on;
31 gzip_proxied any; 36 gzip_proxied any;