From 75e7cf6e813fefc180f9ec9930a694d5a61fb73c Mon Sep 17 00:00:00 2001 From: Kresnadi Budisantoso Date: Wed, 23 Sep 2020 16:22:24 +0200 Subject: [PATCH] Disable checking the client request body size. See also http://nginx.org/en/docs/http/ngx_http_core_module.html#client_max_body_size --- docker/common/nginx/nginx.conf.template | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/common/nginx/nginx.conf.template b/docker/common/nginx/nginx.conf.template index c4993d69c..7945bb21f 100644 --- a/docker/common/nginx/nginx.conf.template +++ b/docker/common/nginx/nginx.conf.template @@ -26,6 +26,7 @@ server { location /status { proxy_pass $API_URL; } + client_max_body_size 0; gzip_min_length 1000; gzip on; gzip_http_version 1.0;