From e7610db054970379ea96691c0fc41c3eb3923c83 Mon Sep 17 00:00:00 2001 From: Shyam Sunder Date: Fri, 5 Jun 2020 10:07:55 -0400 Subject: [PATCH] client/docker: enforce waitress' max upload limitations on nginx proxy This ensures that both NGINX and Waitress are using the same max upload request body. See #327 --- client/nginx.conf.docker | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/nginx.conf.docker b/client/nginx.conf.docker index bd421f5..98c18b3 100644 --- a/client/nginx.conf.docker +++ b/client/nginx.conf.docker @@ -42,7 +42,7 @@ http { return 200; } - client_max_body_size 0; + client_max_body_size 1073741824; gzip on; gzip_comp_level 3;