Apache directory authentication against ldap groups -
i'm using apache 2.2.15 , need specified directory authenticate against 1 of 3 ldap groups. example, want directory able authenticate against either group1, group2, or group3. if user has 1 of these groups associated ldap accounts should able access content within directory. in httpd.conf file have following block of code:
<directory /path/to/folder> authname "name of authentication" authtype basic perlsetvar basedn dc=abc, dc=def, dc=ghi perlsetvar ldapserver nameofldapserver perlsetvar uidattr uid perlsetvar authgroup (want somehow 3 groups) perlsetvar cookiename nameofcookie perlsetvar sessionsdb /path/to/sessions perlauthenhandler auth::authldaphandler require valid-user </directory>
i've tried adding 3 groups in 1 line authgroup had no luck. created multiple declarations of authgroup see if anything, no luck. ideas on how make directory authenticate against 1 of listed groups?
Comments
Post a Comment