]> git.pld-linux.org Git - packages/apache1.git/blob - apache1-common.conf
- split configs to configdir
[packages/apache1.git] / apache1-common.conf
1 # $Id$
2
3 # Each directory to which Apache has access, can be configured with respect
4 # to which services and features are allowed and/or disabled in that
5 # directory (and its subdirectories). 
6
7 # First, we configure the "default" to be a very restrictive set of 
8 # permissions.  
9 <Directory />
10     Options FollowSymLinks
11     AllowOverride None
12
13     Order deny,allow
14     Deny from all
15 </Directory>
16
17 DocumentRoot "/home/services/apache/html"
18 # This should be changed to whatever you set DocumentRoot to.
19 <Directory "/home/services/apache/html">
20         Options Indexes FollowSymLinks MultiViews
21         AllowOverride None
22         Order allow,deny
23         Allow from all
24 </Directory>
25
26 <Files ~ "^\.ht">
27         Order allow,deny
28         Deny from all
29         Satisfy All
30 </Files>
31
32 # vim: filetype=apache ts=4 sw=4 et
This page took 0.029668 seconds and 4 git commands to generate.