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.
khosb/application/config/auth.php

21 lines
470 B
PHP
Raw Normal View History

2010-11-29 22:41:08 +00:00
<?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',
2011-05-02 12:20:56 +00:00
'forced_key' => 'auth_forced',
2010-11-29 22:41:08 +00:00
);
?>