]> git.pld-linux.org Git - packages/apache1.git/blob - apache1-defaultindex.conf
- add missing config reload for -defaultindex
[packages/apache1.git] / apache1-defaultindex.conf
1 # Sets up default html for Apache
2
3 # This directive allows us to have Apache's default start page
4 # in /apache-default/, but still have / go to the right place.
5 RedirectMatch ^/$ /apache-default/
6
7 Alias /apache-default/ /usr/share/apache1/html/
8 <Directory "/usr/share/apache1/html">
9         Options Indexes FollowSymLinks MultiViews
10         AllowOverride None
11         <IfModule mod_access.c>
12                 Order allow,deny
13                 Allow from all
14         </IfModule>
15 </Directory>
This page took 0.030035 seconds and 3 git commands to generate.