How can I enable http auth in lighttpd for multiple users?
At the time, authentication is done using the Domain Admins group, based
on the ldap. However, I need to create 2 more users who are not
administrators to just viewing my reports sarg:
auth.backend = "ldap"
auth.backend.ldap.hostname = "localhost"
auth.backend.ldap.base-dn = "ou=Admins,ou=users,dc=innovata,dc=intraer"
auth.backend.ldap.filter = "(uid=$)"
auth.require = ( "/sarg" =>
( "method" => "basic",
"realm" => "SARG",
"require" => "valid-user"
)
)
No comments:
Post a Comment