diff options
| author | Shyam Sunder <sgsunder1@gmail.com> | 2020-06-05 10:07:55 -0400 |
|---|---|---|
| committer | Shyam Sunder <sgsunder1@gmail.com> | 2020-06-05 10:07:55 -0400 |
| commit | e7610db054970379ea96691c0fc41c3eb3923c83 (patch) | |
| tree | bf9d5126b07c27106c0a1da356c83eb6698c2757 /client | |
| parent | ea623449e7c29801ab0a0ade043308937cca7506 (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.docker | 2 |
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; |