Merge pull request #195 from paulgration/fix-extra-parameters-indentation

Fix vhosts extra_parameters indentation
This commit is contained in:
Jeff Geerling 2021-08-26 22:54:30 -05:00 committed by GitHub
commit f472547b24
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -27,7 +27,7 @@
</Directory>
{% endif %}
{% if vhost.extra_parameters is defined %}
{{ vhost.extra_parameters }}
{{ vhost.extra_parameters | indent(width=2, first=True, indentfirst=True) }}
{% endif %}
</VirtualHost>
@ -74,7 +74,7 @@
</Directory>
{% endif %}
{% if vhost.extra_parameters is defined %}
{{ vhost.extra_parameters }}
{{ vhost.extra_parameters | indent(width=2, first=True, indentfirst=True) }}
{% endif %}
</VirtualHost>