diff options
author | Ansuel Smith <ansuelsmth@gmail.com> | 2020-03-20 19:03:18 +0100 |
---|---|---|
committer | Ansuel Smith <ansuelsmth@gmail.com> | 2020-03-20 20:59:20 +0100 |
commit | 0910d61cd442c5d7fcdc028cf2473c861979d950 (patch) | |
tree | 781ad1f0137ab54b8b14dbbe5f32be50f90d3884 /net/nginx/files | |
parent | d96f1cf10c322fd7349b7b902e37cb5f36db8a1e (diff) |
nginx: bump version and fix bug
This fix #11610 by increasing max client body size
in nginx conf.
Bump nginx to latest version.
Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
Diffstat (limited to 'net/nginx/files')
-rw-r--r-- | net/nginx/files/nginx.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/nginx/files/nginx.conf b/net/nginx/files/nginx.conf index 8f8c8b194..65d37b504 100644 --- a/net/nginx/files/nginx.conf +++ b/net/nginx/files/nginx.conf @@ -15,7 +15,7 @@ http { default_type application/octet-stream; sendfile on; - client_max_body_size 17M; + client_max_body_size 128M; large_client_header_buffers 2 1k; gzip on; |