Enable DAV modules
[hcoop/zz_old/config/apache2.git] / mods-available / userdir.conf
1 <IfModule mod_userdir.c>
2 UserDir public_html
3 UserDir disabled root
4
5 <Directory /home/*/public_html>
6 AllowOverride FileInfo AuthConfig Limit Indexes
7 Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
8 <Limit GET POST OPTIONS>
9 Order allow,deny
10 Allow from all
11 </Limit>
12 <LimitExcept GET POST OPTIONS>
13 Order deny,allow
14 Deny from all
15 </LimitExcept>
16 </Directory>
17 </IfModule>
18