From: Richard Bowen
Date: Fri, 21 Feb 2003 17:35:23 +0000 (+0000)
Subject: Remind people to grant access to directories that they Alias
X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eca0d30bf4b9faeb9ffb908f5d207df47cbb27d4;p=thirdparty%2Fapache%2Fhttpd.git
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 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>
+
+