From eca0d30bf4b9faeb9ffb908f5d207df47cbb27d4 Mon Sep 17 00:00:00 2001 From: Richard Bowen Date: Fri, 21 Feb 2003 17:35:23 +0000 Subject: [PATCH] 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 --- docs/manual/mod/mod_alias.xml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/docs/manual/mod/mod_alias.xml b/docs/manual/mod/mod_alias.xml index c8407ad04fb..31d46c33a75 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> + + -- 2.47.3