summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authorShyam Sunder <sgsunder1@gmail.com>2020-06-05 10:07:55 -0400
committerShyam Sunder <sgsunder1@gmail.com>2020-06-05 10:07:55 -0400
commite7610db054970379ea96691c0fc41c3eb3923c83 (patch)
treebf9d5126b07c27106c0a1da356c83eb6698c2757 /client
parentea623449e7c29801ab0a0ade043308937cca7506 (diff)
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
Diffstat (limited to 'client')
-rw-r--r--client/nginx.conf.docker2
1 files changed, 1 insertions, 1 deletions
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;