]> git.pld-linux.org Git - packages/apache1.git/blame - apache1-mod_userdir.conf
- update to 1.3.39
[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
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>
c6d435c1 26</IfModule>
This page took 0.117887 seconds and 4 git commands to generate.