mirror of
https://github.com/geerlingguy/ansible-role-apache
synced 2024-11-05 13:43:29 +01:00
Fix vhosts extra_parameters indentation
This commit is contained in:
parent
0e8c90d88e
commit
ea4f5da3a8
1 changed files with 2 additions and 2 deletions
|
@ -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>
|
||||
|
||||
|
|
Loading…
Reference in a new issue