22 lines
469 B
PHP
22 lines
469 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',
|
|
'hash_key' => '',
|
|
'lifetime' => 1209600,
|
|
'session_key' => 'auth_user',
|
|
'forced_key' => 'auth_forced',
|
|
);
|
|
?>
|