]> git.pld-linux.org Git - packages/apache1.git/blob - apache1-mod_alias.conf
- /icons alias moved from mod_alias to mod_autoindex config
[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
12 Alias /manual/ "/usr/share/apache1-manual/"
13 <Directory "/usr/share/apache1-manual">
14         Options Indexes MultiViews
15         AllowOverride None
16         order deny,allow
17         deny from all
18         allow from 127.0.0.1
19 </Directory>
20
21 </IfModule>
This page took 0.027807 seconds and 4 git commands to generate.