mirror of
https://github.com/geerlingguy/ansible-role-apache
synced 2025-01-03 00:30:18 +01:00
Merge pull request #130 from betheoutlier/encapsulate-paths-vhosts
The documentroot paths for the vhosts were not encapsulated in quotes…
This commit is contained in:
commit
422b17d27e
1 changed files with 2 additions and 2 deletions
|
@ -8,7 +8,7 @@
|
||||||
ServerAlias {{ vhost.serveralias }}
|
ServerAlias {{ vhost.serveralias }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if vhost.documentroot is defined %}
|
{% if vhost.documentroot is defined %}
|
||||||
DocumentRoot {{ vhost.documentroot }}
|
DocumentRoot "{{ vhost.documentroot }}"
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if vhost.serveradmin is defined %}
|
{% if vhost.serveradmin is defined %}
|
||||||
|
@ -42,7 +42,7 @@
|
||||||
ServerAlias {{ vhost.serveralias }}
|
ServerAlias {{ vhost.serveralias }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if vhost.documentroot is defined %}
|
{% if vhost.documentroot is defined %}
|
||||||
DocumentRoot {{ vhost.documentroot }}
|
DocumentRoot "{{ vhost.documentroot }}"
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
SSLEngine on
|
SSLEngine on
|
||||||
|
|
Loading…
Reference in a new issue