From: Rich Bowen Date: Fri, 21 Feb 2003 17:35:23 +0000 (+0000) Subject: Remind people to grant access to directories that they Alias X-Git-Tag: pre_ajp_proxy~2097 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=08290ad7701ee402a5b063f15d50a35d9dfa0fd2;p=apache Remind people to grant access to directories that they Alias git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98746 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_alias.xml b/docs/manual/mod/mod_alias.xml index c8407ad04f..31d46c33a7 100644 --- a/docs/manual/mod/mod_alias.xml +++ b/docs/manual/mod/mod_alias.xml @@ -70,6 +70,19 @@ href="../urlmapping.html">Mapping URLs to the filesystem sections are run through once before aliases are performed, so they will apply.)

+

In particular, if you are creating an Alias to a + directory outside of your DocumentRoot, you may need to explicitly + permit access to the target directory.

+ + Example: + Alias /image /ftp/pub/image + <Directory /ftp/pub/image> + Order allow,deny + Allow from all + </Directory> + +