]> git.pld-linux.org Git - packages/apache1.git/blob - apache1-mod_alias.conf
- rel 5
[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 "/icons" isn't aliased in this
9 # example, only "/icons/"..
10 #
11 Alias /icons/ "/home/services/apache/icons/"
12
13 <Directory "/home/services/apache/icons">
14         Options Indexes MultiViews
15         AllowOverride None
16         Order allow,deny
17         Allow from all
18 </Directory>
19
20 Alias /manual/ "/usr/share/apache1-manual/"
21 <Directory "/usr/share/apache1-manual">
22         Options Indexes MultiViews
23         AllowOverride None
24         order deny,allow
25         deny from all
26         allow from 127.0.0.1
27 </Directory>
28
29 </IfModule>
This page took 0.047828 seconds and 3 git commands to generate.