diff --git a/make/common/templates/nginx/nginx.http.conf b/make/common/templates/nginx/nginx.http.conf index e25db141e..e101c3fa8 100644 --- a/make/common/templates/nginx/nginx.http.conf +++ b/make/common/templates/nginx/nginx.http.conf @@ -64,6 +64,8 @@ http { proxy_buffers 4 32k; proxy_busy_buffers_size 64k; proxy_temp_file_write_size 64k; + client_body_temp_path /tmp/nginx_client_body_temp; + proxy_temp_path /tmp/nginx_proxy_temp; } location /service/ { diff --git a/make/common/templates/nginx/nginx.https.conf b/make/common/templates/nginx/nginx.https.conf index fe8d50ec8..f4dc325a3 100644 --- a/make/common/templates/nginx/nginx.https.conf +++ b/make/common/templates/nginx/nginx.https.conf @@ -83,6 +83,8 @@ http { proxy_buffers 4 32k; proxy_busy_buffers_size 64k; proxy_temp_file_write_size 64k; + client_body_temp_path /tmp/nginx_client_body_temp; + proxy_temp_path /tmp/nginx_proxy_temp; } location /service/ {