Commit f100b8d3 authored by Dom Sekotill's avatar Dom Sekotill
Browse files

Fix missing line-terminator in template output

parent ab291660
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -24,7 +24,7 @@ http {
		listen {{ url.hostname }}:{{ port }} {{ flag }};
		server_name _;

		{%- if url.scheme == 'https' %}
		{% if url.scheme == 'https' %}
		ssl_certificate {{ ssl_certificate }};
		ssl_certificate_key {{ ssl_certificate_key or ssl_certificate }};
		{% endif -%}