22 lines
501 B
PHP
22 lines
501 B
PHP
<?php defined('SYSPATH') or die('No direct access allowed.');
|
|
|
|
/**
|
|
* lnApp authentication configuration
|
|
*
|
|
* @package lnApp
|
|
* @category Configuration
|
|
* @author Deon George
|
|
* @copyright (c) 2010 Deon George
|
|
* @license http://dev.leenooks.net/license.html
|
|
*/
|
|
|
|
return array(
|
|
'driver' => 'ORM',
|
|
'hash_method' => 'md5',
|
|
'salt_pattern' => '1, 3, 5, 9, 14, 15, 20, 21, 28, 30',
|
|
'lifetime' => 1209600,
|
|
'session_key' => 'auth_user',
|
|
'forced_key' => 'auth_forced',
|
|
);
|
|
?>
|