From a629923cb12f140a2849e5828902cda41a62e34f Mon Sep 17 00:00:00 2001 From: Brian Wells Date: Thu, 25 Mar 2021 14:49:23 -0500 Subject: [PATCH] Update templates/nginx.conf.j2 to remove indentation on http_begin and http_end blocks. --- templates/nginx.conf.j2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/nginx.conf.j2 b/templates/nginx.conf.j2 index 6db48c1..59f4e2b 100644 --- a/templates/nginx.conf.j2 +++ b/templates/nginx.conf.j2 @@ -19,7 +19,7 @@ events { {% endblock %} http { - {% block http_begin %}{% endblock %} +{% block http_begin %}{% endblock %} {% block http_basic %} include {{ nginx_mime_file_path }}; @@ -79,5 +79,5 @@ http { {% endif %} {% endblock %} - {% block http_end %}{% endblock %} +{% block http_end %}{% endblock %} }