22 lines
522 B
PHP
22 lines
522 B
PHP
<?php defined('SYSPATH') or die('No direct access allowed.');
|
|
|
|
/**
|
|
* OSB authentication configuration
|
|
*
|
|
* @package PLA
|
|
* @category Configuration
|
|
* @author Deon George
|
|
* @copyright (c) phpLDAPadmin Development Team
|
|
* @license http://dev.phpldapadmin.org/license.html
|
|
*/
|
|
|
|
return array(
|
|
'driver' => 'LDAP',
|
|
// 'hash_method' => '',
|
|
'hash_key' => '', // LDAP passwords should be cleartext
|
|
'lifetime' => 1209600,
|
|
// 'session_key' => 'auth_user',
|
|
// 'forced_key' => 'auth_forced',
|
|
);
|
|
?>
|