]> git.pld-linux.org Git - packages/apache1.git/blob - apache1-mod_alias.conf
rel 15; builds
[packages/apache1.git] / apache1-mod_alias.conf
1 # $Id$
2
3 <IfModule mod_alias.c>
4 # Aliases: Add here as many aliases as you need (with no limit). The format is
5 # Alias fakename realname
6 #
7 # Note that if you include a trailing / on fakename then the server will
8 # require it to be present in the URL.  So "/manual" isn't aliased in this
9 # example, only "/manual/"..
10 #
11
12 Alias /manual/ "/usr/share/apache1-manual/"
13 <Directory "/usr/share/apache1-manual">
14         Options Indexes MultiViews
15         AllowOverride None
16         <IfModule mod_access.c>
17                 Order deny,allow
18                 Deny from all
19                 Allow from 127.0.0.1
20         </IfModule>
21 </Directory>
22
23 </IfModule>
This page took 0.038746 seconds and 3 git commands to generate.