130a87aa9a
Minor updates for ADSL services Updates to Sort::MAsort() Move core OSB items under application/ Moved ACCOUNT functions under application Minor updates to task
23 lines
501 B
PHP
23 lines
501 B
PHP
<?php defined('SYSPATH') or die('No direct access allowed.');
|
|
|
|
/**
|
|
* OSB Configuration - Authentication
|
|
*
|
|
* @package OSB
|
|
* @subpackage Authentication
|
|
* @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',
|
|
);
|
|
?>
|