]> git.pld-linux.org Git - packages/apache1.git/blame - apache1-mod_alias.conf
- rel 5
[packages/apache1.git] / apache1-mod_alias.conf
CommitLineData
c6d435c1 1# $Id$
c6d435c1
ER
2
3<IfModule mod_alias.c>
e73fbcdf 4# Aliases: Add here as many aliases as you need (with no limit). The format is
c6d435c1
ER
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#
11Alias /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
20Alias /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
c6d435c1 29</IfModule>
This page took 1.02555 seconds and 4 git commands to generate.