This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.

23 lines
501 B
PHP
Raw Normal View History

2010-11-30 09:41:08 +11:00
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* OSB Configuration - Authentication
2010-11-30 09:41:08 +11:00
*
* @package OSB
* @subpackage Authentication
2010-11-30 09:41:08 +11:00
* @category Configuration
* @author Deon George
* @copyright (c) 2010 Open Source Billing
* @license http://dev.osbill.net/license.html
*/
2011-05-14 17:35:33 +10:00
2010-11-30 09:41:08 +11:00
return array(
'driver' => 'OSB',
'hash_method' => 'md5',
2011-05-14 17:35:33 +10:00
'hash_key' => '',
2010-11-30 09:41:08 +11:00
'lifetime' => 1209600,
'session_key' => 'auth_user',
2011-07-14 08:59:32 +10:00
'forced_key' => 'auth_forced',
2010-11-30 09:41:08 +11:00
);
?>