diff options
author | Ken Coar <coar@apache.org> | 2015-04-15 18:17:34 +0000 |
---|---|---|
committer | Ken Coar <coar@apache.org> | 2015-04-15 18:17:34 +0000 |
commit | 198976aa9d100cd4a98ba16e45bba564a7e04d1e (patch) | |
tree | c61656e0397b3faddbe8406c81bc4bb9fe586dd8 /docs/manual/mod/core.html.en | |
parent | b75f3c1fdf2181917781cc952d50d1abc3ab3900 (diff) | |
download | httpd-198976aa9d100cd4a98ba16e45bba564a7e04d1e.tar.gz |
Quote ScriptAlias and DocumentRoot arguments.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1673917 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/mod/core.html.en')
-rw-r--r-- | docs/manual/mod/core.html.en | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/manual/mod/core.html.en b/docs/manual/mod/core.html.en index ae927b47c4..1f60fc16d9 100644 --- a/docs/manual/mod/core.html.en +++ b/docs/manual/mod/core.html.en @@ -804,7 +804,7 @@ which no other media type configuration could be found. Define SSL </IfDefine> -DocumentRoot /var/www/${servername}/htdocs</pre> +DocumentRoot "/var/www/${servername}/htdocs"</pre> <p>Variable names may not contain colon ":" characters, to avoid clashes @@ -4538,7 +4538,7 @@ hostname or IP address</td></tr> <pre class="prettyprint lang-config"><VirtualHost 10.1.2.3:80> ServerAdmin webmaster@host.example.com - DocumentRoot /www/docs/host.example.com + DocumentRoot "/www/docs/host.example.com" ServerName host.example.com ErrorLog logs/host.example.com-error_log TransferLog logs/host.example.com-access_log @@ -4552,7 +4552,7 @@ hostname or IP address</td></tr> <pre class="prettyprint lang-config"><VirtualHost [2001:db8::a00:20ff:fea7:ccea]:80> ServerAdmin webmaster@host.example.com - DocumentRoot /www/docs/host.example.com + DocumentRoot "/www/docs/host.example.com" ServerName host.example.com ErrorLog logs/host.example.com-error_log TransferLog logs/host.example.com-access_log |