20 lines
436 B
PHP
20 lines
436 B
PHP
|
<?php defined('SYSPATH') or die('No direct access allowed.');
|
||
|
|
||
|
/**
|
||
|
* OSB authentication configuration
|
||
|
*
|
||
|
* @package OSB
|
||
|
* @category Configuration
|
||
|
* @author Deon George
|
||
|
* @copyright (c) 2010 Open Source Billing
|
||
|
* @license http://dev.osbill.net/license.html
|
||
|
*/
|
||
|
return array(
|
||
|
'driver' => 'OSB',
|
||
|
'hash_method' => 'md5',
|
||
|
'salt_pattern' => null,
|
||
|
'lifetime' => 1209600,
|
||
|
'session_key' => 'auth_user',
|
||
|
);
|
||
|
?>
|