19 lines
604 B
Plaintext
19 lines
604 B
Plaintext
<IfModule mod_userdir.c>
|
|
UserDir public_html
|
|
UserDir disabled root
|
|
|
|
<Directory /home/*/public_html>
|
|
AllowOverride FileInfo AuthConfig Limit Indexes
|
|
Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
|
|
<Limit GET POST OPTIONS>
|
|
Order allow,deny
|
|
Allow from all
|
|
</Limit>
|
|
<LimitExcept GET POST OPTIONS>
|
|
Order deny,allow
|
|
Deny from all
|
|
</LimitExcept>
|
|
</Directory>
|
|
</IfModule>
|
|
|