diff --git a/templates/nginx.conf.j2 b/templates/nginx.conf.j2 index 85395a5..53ca341 100644 --- a/templates/nginx.conf.j2 +++ b/templates/nginx.conf.j2 @@ -28,6 +28,8 @@ http { {%- endfor %} {% endif %} keepalive_timeout {{ env("KEEPALIVE_TIMEOUT", "65") }}; + proxy_read_timeout {{ env("PROXY_READ_TIMEOUT", "60s") }}; + proxy_send_timeout {{ env("PROXY_SEND_TIMEOUT", "60s") }}; client_max_body_size {{ env("CLIENT_MAX_BODY_SIZE", "1m") }}; {% if GZIP == 'true' %} gzip on;