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:
Jeff Geerling 2017-05-09 10:16:32 -05:00 committed by GitHub
commit 422b17d27e

View file

@ -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