1
0
Fork 0
mirror of https://github.com/Oreolek/kangana.git synced 2024-07-08 01:24:23 +03:00
kangana/application/config/auth.php.example

16 lines
371 B
Plaintext
Raw Normal View History

2014-01-29 12:44:40 +02:00
<?php defined('SYSPATH') OR die('No direct access allowed.');
return array(
'driver' => 'File',
'users' => array(
'admin' => 'password-hash'
// generate the hash using hash_hmac('sha256', $str, "hashing_key")
),
'hash_method' => 'sha256',
'hash_key' => "hashing_key",
'lifetime' => 1209600,
'session_key' => 'auth_user',
);