]> git.pld-linux.org Git - packages/apache1.git/blob - apache1-mod_userdir.conf
- add missing config reload for -defaultindex
[packages/apache1.git] / apache1-mod_userdir.conf
1 # $Id$
2 LoadModule userdir_module       modules/mod_userdir.so
3
4 <IfModule mod_userdir.c>
5 # UserDir: The name of the directory which is appended onto a user's home
6 # directory if a ~user request is received.
7 #
8 UserDir public_html
9
10 #
11 # Control access to UserDir directories.  The following is an example
12 # for a site where these directories are restricted to read-only.
13 #
14 <Directory /home/users/*/public_html>
15         AllowOverride FileInfo AuthConfig Limit
16         Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
17         <Limit GET POST OPTIONS PROPFIND>
18                 Order allow,deny
19                 Allow from all
20         </Limit>
21         <LimitExcept GET POST OPTIONS PROPFIND>
22                 Order deny,allow
23                 Deny from all
24         </LimitExcept>
25 </Directory>
26 </IfModule>
This page took 0.064792 seconds and 3 git commands to generate.