]> git.pld-linux.org Git - packages/apache1.git/blob - apache1-mod_userdir.conf
rel 15; builds
[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         <IfModule mod_access.c>
18                 <Limit GET POST OPTIONS PROPFIND>
19                         Order allow,deny
20                         Allow from all
21                 </Limit>
22                 <LimitExcept GET POST OPTIONS PROPFIND>
23                         Order deny,allow
24                         Deny from all
25                 </LimitExcept>
26         </IfModule>
27 </Directory>
28 </IfModule>
This page took 0.055284 seconds and 3 git commands to generate.