userdir.conf 909 B

12345678910111213141516171819202122232425262728293031323334353637
  1. #######################################################################
  2. ##
  3. ## Userdir Module
  4. ## ----------------
  5. ##
  6. ## for all details see:
  7. ## http://www.lighttpd.net/documentation/userdir.html
  8. ##
  9. server.modules += ( "mod_userdir" )
  10. ##
  11. ## usually it should be set to "public_html" to take ~/public_html/ as
  12. ## the document root
  13. ## Default: empty (document root is the home directory)
  14. ##
  15. userdir.path = "public_html"
  16. ##
  17. ## If set, don't check /etc/passwd for homedir
  18. ## Default: empty
  19. #userdir.basepath = server_root + "/users/"
  20. ##
  21. ## list of usernames which may not use this feature
  22. ## Default: empty (all users may use it)
  23. ##
  24. #userdir.exclude-user = ( "root", "postmaster" )
  25. ##
  26. ## if set, only users from this list may use the feature
  27. ## Default: empty (all users may use it)
  28. ##
  29. #userdir.include-user = ("user1", "user2")
  30. ##
  31. #######################################################################