diff options
author | Paweł Dybiec <pawel.to.malpa@gmail.com> | 2019-05-23 22:00:47 +0200 |
---|---|---|
committer | Paweł Dybiec <pawel.to.malpa@gmail.com> | 2019-05-23 22:00:47 +0200 |
commit | c39cc4253284720bae1796ec812eb5f22ac38a31 (patch) | |
tree | b00226f1d90d24e9b0b11078fb2537b3e7002939 /templates | |
parent | Enable gzip compression for proxies and many types (diff) |
Max body size parameter
Diffstat (limited to 'templates')
-rw-r--r-- | templates/nginx.conf.j2 | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/templates/nginx.conf.j2 b/templates/nginx.conf.j2 index a72c6cc..724bf32 100644 --- a/templates/nginx.conf.j2 +++ b/templates/nginx.conf.j2 @@ -30,6 +30,10 @@ server { proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "Upgrade"; {% endif %} + +{% if server.client_body_size is defined%} + client_max_body_size {{ server.client_body_size }}; +{% endif %} {% endif %} } |