about summary refs log tree commit diff
path: root/templates/nginx.conf.j2
diff options
context:
space:
mode:
authorPaweł Dybiec <pawel.to.malpa@gmail.com>2019-05-23 22:00:47 +0200
committerPaweł Dybiec <pawel.to.malpa@gmail.com>2019-05-23 22:00:47 +0200
commitc39cc4253284720bae1796ec812eb5f22ac38a31 (patch)
treeb00226f1d90d24e9b0b11078fb2537b3e7002939 /templates/nginx.conf.j2
parentEnable gzip compression for proxies and many types (diff)
Max body size parameter
Diffstat (limited to 'templates/nginx.conf.j2')
-rw-r--r--templates/nginx.conf.j24
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 %}
   }