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

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'
),
'hash_method' => 'sha256',
'hash_key' => "hashing_key",
'lifetime' => 1209600,
'session_key' => 'auth_user',
);