From 125f182635e4c42712e6a793d2e5660767b79b30 Mon Sep 17 00:00:00 2001 From: Brian Wells Date: Thu, 25 Mar 2021 14:44:14 -0500 Subject: [PATCH] Update templates/nginx.conf.j2 with send_timeout variable. --- templates/nginx.conf.j2 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/templates/nginx.conf.j2 b/templates/nginx.conf.j2 index 7cdec60..6db48c1 100644 --- a/templates/nginx.conf.j2 +++ b/templates/nginx.conf.j2 @@ -40,6 +40,8 @@ http { keepalive_timeout {{ nginx_keepalive_timeout }}; keepalive_requests {{ nginx_keepalive_requests }}; + send_timeout {{ nginx_send_timeout }}; + server_tokens {{ nginx_server_tokens }}; {% if nginx_proxy_cache_path %} proxy_cache_path {{ nginx_proxy_cache_path }};