auth.conf 931 B

123456789101112131415161718192021222324252627
  1. #######################################################################
  2. ##
  3. ## Authentication Module
  4. ## -----------------------
  5. ##
  6. ## See http://www.lighttpd.net/documentation/authentification.html
  7. ## for more info.
  8. ##
  9. #auth.backend = "plain"
  10. #auth.backend.plain.userfile = "/etc/lighttpd/lighttpd.user"
  11. #auth.backend.plain.groupfile = "/etc/lighttpd/lighttpd.group"
  12. #auth.backend.ldap.hostname = "localhost"
  13. #auth.backend.ldap.base-dn = "dc=my-domain,dc=com"
  14. #auth.backend.ldap.filter = "(uid=$)"
  15. #auth.require = ( "/server-status" =>
  16. # (
  17. # "method" => "digest",
  18. # "realm" => "Server Status",
  19. # "require" => "valid-user"
  20. # ),
  21. # )
  22. ##
  23. #######################################################################