-
Olav Morken authored
Thanks to Thijs Kinkhorst for providing this patch! git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@3178 44740490-163a-0410-bde0-09ae8108e29a
Olav Morken authoredThanks to Thijs Kinkhorst for providing this patch! git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@3178 44740490-163a-0410-bde0-09ae8108e29a
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
<?php
/*
* Configuration for the multi-DN LDAP authentication module.
*
* $Id$
*/
$ldapmulti = array (
'feide.no' => array(
'description' => 'Feide',
/* for a description of options see equivalent options in ldap.php starting with auth.ldap. */
'dnpattern' => 'uid=%username%,dc=feide,dc=no,ou=feide,dc=uninett,dc=no',
'hostname' => 'ldap.uninett.no',
'attributes' => NULL,
'enable_tls' => TRUE,
'search.enable' => FALSE,
'search.base' => NULL,
'search.attributes' => NULL,
'search.username' => NULL,
'search.password' => NULL,
),
'uninett.no' => array(
'description' => 'UNINETT',
'dnpattern' => 'uid=%username%,ou=people,dc=uninett,dc=no',
'hostname' => 'ldap.uninett.no',
'attributes' => NULL,
)
);
?>