userdir.conf 368 B

1234567891011121314
  1. # Depends: authz_core
  2. # Suggests: autoindex
  3. <IfModule mod_userdir.c>
  4. UserDir public_html
  5. UserDir disabled root
  6. <Directory /home/*/public_html>
  7. AllowOverride FileInfo AuthConfig Limit Indexes
  8. Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
  9. Require method GET POST OPTIONS
  10. </Directory>
  11. </IfModule>
  12. # vim: syntax=apache ts=4 sw=4 sts=4 sr noet