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
This commit is contained in:
Shyam Sunder 2020-06-05 10:07:55 -04:00
parent ea623449e7
commit e7610db054

View file

@ -42,7 +42,7 @@ http {
return 200;
}
client_max_body_size 0;
client_max_body_size 1073741824;
gzip on;
gzip_comp_level 3;