Disable checking the client request body size.

See also http://nginx.org/en/docs/http/ngx_http_core_module.html#client_max_body_size
This commit is contained in:
Kresnadi Budisantoso 2020-09-23 16:22:24 +02:00
parent 8e0a2caea8
commit 75e7cf6e81

View File

@ -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;