summaryrefslogtreecommitdiff
path: root/roles/nginx/vhost
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2022-08-17 16:29:50 +0200
committerChristian Pointner <equinox@spreadspace.org>2022-08-17 16:29:50 +0200
commitd71c91fc012d79be6bf93b49a616b84271466b93 (patch)
tree1f279164cc537ab0cdadaf78bcff3823e9c8a019 /roles/nginx/vhost
parentkubernetes/kubreadm: ignore changes of kubeadm join configs (diff)
cosmetic fix
Diffstat (limited to 'roles/nginx/vhost')
-rw-r--r--roles/nginx/vhost/templates/generic-proxy-no-buffering.conf.j28
1 files changed, 4 insertions, 4 deletions
diff --git a/roles/nginx/vhost/templates/generic-proxy-no-buffering.conf.j2 b/roles/nginx/vhost/templates/generic-proxy-no-buffering.conf.j2
index 2a74697e..665c9d77 100644
--- a/roles/nginx/vhost/templates/generic-proxy-no-buffering.conf.j2
+++ b/roles/nginx/vhost/templates/generic-proxy-no-buffering.conf.j2
@@ -21,17 +21,17 @@ server {
{% if 'proxy_redirect' in location %}
{% for entry in location.proxy_redirect %}
proxy_redirect {{ entry.redirect }} {{ entry.replacement }};
-{% endfor %}
-{% endif %}
+{% endfor %}
+{% endif %}
{% if 'proxy_ssl' in location %}
{% for prop in (location.proxy_ssl | list | sort) %}
proxy_ssl_{{ prop }} {{ location.proxy_ssl[prop] }};
-{% endfor %}
+{% endfor %}
{% endif %}
{% if 'extra_directives' in location %}
{{ location.extra_directives | indent(8) }}
-{% endif %}
+{% endif %}
}
{% endfor %}
}