Advertisement
Guest User

Untitled

a guest
Apr 16th, 2012
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. # Settings for user home directories
  2. #
  3. # Required module: mod_userdir
  4.  
  5. # UserDir: The name of the directory that is appended onto a user's home
  6. # directory if a ~user request is received. Note that you must also set
  7. # the default access control for these directories, as in the example below.
  8.  
  9. UserDir html
  10. UserDir disabled
  11. UserDir enabled carrie patrick
  12.  
  13. # Control access to UserDir directories. The following is an example
  14. # for a site where these directories are restricted to read-only.
  15.  
  16. <Directory "/home/*/html">
  17. AllowOverride FileInfo AuthConfig Limit Indexes
  18. Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
  19. <Limit GET POST OPTIONS>
  20. Order allow,deny
  21. Allow from all
  22. </Limit>
  23. <LimitExcept GET POST OPTIONS>
  24. Order deny,allow
  25. Deny from all
  26. </LimitExcept>
  27. </Directory>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement