-
Andreas Åkre Solberg authored
git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@351 44740490-163a-0410-bde0-09ae8108e29a
Andreas Åkre Solberg authoredgit-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@351 44740490-163a-0410-bde0-09ae8108e29a
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
ldapfeide.php 482 B
<?php
/*
* The configuration of simpleSAMLphp
*
*
*/
$ldapfeide = array (
'example1.com' => array(
'description' => 'Example Org 1',
'searchbase' => 'cn=people,dc=example1,dc=com',
'hostname' => 'ldaps://ldap.example1.com',
'attributes' => null,
),
'example2.com' => array(
'description' => 'Example Org 2',
'searchbase' => 'cn=people,dc=example2,dc=com',
'hostname' => 'ldaps://ldap.example2.com',
'attributes' => array('mail', 'street'),
)
);
?>