mirror of
https://github.com/geerlingguy/ansible-role-apache
synced 2024-12-22 02:50:19 +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 }}
|
||||
{% endif %}
|
||||
{% if vhost.documentroot is defined %}
|
||||
DocumentRoot {{ vhost.documentroot }}
|
||||
DocumentRoot "{{ vhost.documentroot }}"
|
||||
{% endif %}
|
||||
|
||||
{% if vhost.serveradmin is defined %}
|
||||
|
@ -42,7 +42,7 @@
|
|||
ServerAlias {{ vhost.serveralias }}
|
||||
{% endif %}
|
||||
{% if vhost.documentroot is defined %}
|
||||
DocumentRoot {{ vhost.documentroot }}
|
||||
DocumentRoot "{{ vhost.documentroot }}"
|
||||
{% endif %}
|
||||
|
||||
SSLEngine on
|
||||
|
|
Loading…
Reference in a new issue