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.
phptsmadmin/includes/kohana/modules/auth/config/auth.php

18 lines
415 B
PHP
Raw Normal View History

2012-11-22 03:25:06 +00:00
<?php defined('SYSPATH') OR die('No direct access allowed.');
2011-01-13 14:49:56 +00:00
return array(
2012-11-22 03:25:06 +00:00
'driver' => 'File',
2011-05-16 12:47:16 +00:00
'hash_method' => 'sha256',
'hash_key' => NULL,
'lifetime' => 1209600,
2012-11-22 03:25:06 +00:00
'session_type' => Session::$default,
2011-05-16 12:47:16 +00:00
'session_key' => 'auth_user',
2011-01-13 14:49:56 +00:00
// Username/password combinations for the Auth File driver
'users' => array(
// 'admin' => 'b3154acf3a344170077d11bdb5fff31532f679a1919e716a02',
),
2011-05-16 12:47:16 +00:00
);