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

17 lines
400 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',
2014-01-30 07:40:49 +02:00
// you can set the user and his password using Password minion task.
// there can be only one user
2014-01-29 12:44:40 +02:00
'users' => array(
'admin' => 'password-hash'
),
2014-01-31 10:15:50 +02:00
'hash_method' => 'sha512',
2014-01-29 12:44:40 +02:00
'hash_key' => "hashing_key",
'lifetime' => 1209600,
'session_key' => 'auth_user',
);