]> git.pld-linux.org Git - packages/apache1.git/blame - apache1-mod_userdir.conf
rel 15; builds
[packages/apache1.git] / apache1-mod_userdir.conf
CommitLineData
c6d435c1 1# $Id$
0a771c6c 2LoadModule userdir_module modules/mod_userdir.so
c6d435c1
ER
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#
8UserDir 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#
a19b290e
ER
14<Directory /home/users/*/public_html>
15 AllowOverride FileInfo AuthConfig Limit
16 Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
fbb14d43
ER
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>
a19b290e 27</Directory>
c6d435c1 28</IfModule>
This page took 0.103819 seconds and 4 git commands to generate.