]> git.pld-linux.org Git - packages/apache1.git/blobdiff - apache1-mod_alias.conf
- fix Host: header sanitizing (in HOSTNAME:PORT form), in ipv6 patch; rel 14
[packages/apache1.git] / apache1-mod_alias.conf
index e25f514a1ae5cf5e28eaa3618fcbfe64b3b5fe1e..b8ecbd2a63f36b50f6093377a60efa0bf9d5f254 100644 (file)
@@ -5,17 +5,19 @@
 # Alias fakename realname
 #
 # Note that if you include a trailing / on fakename then the server will
-# require it to be present in the URL.  So "/icons" isn't aliased in this
-# example, only "/icons/"..
+# require it to be present in the URL.  So "/manual" isn't aliased in this
+# example, only "/manual/"..
 #
 
 Alias /manual/ "/usr/share/apache1-manual/"
 <Directory "/usr/share/apache1-manual">
        Options Indexes MultiViews
        AllowOverride None
-       order deny,allow
-       deny from all
-       allow from 127.0.0.1
+       <IfModule mod_access.c>
+               Order deny,allow
+               Deny from all
+               Allow from 127.0.0.1
+       </IfModule>
 </Directory>
 
 </IfModule>
This page took 0.03012 seconds and 4 git commands to generate.