Config updates for xenial
[sysconfig/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 Options
7                 Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
8                 <Limit GET POST OPTIONS>
9                         Require all granted
10                 </Limit>
11                 <LimitExcept GET POST OPTIONS>
12                         Require all denied
13                 </LimitExcept>
14         </Directory>
15 </IfModule>
16
17 # vim: syntax=apache ts=4 sw=4 sts=4 sr noet