forked from sasanrose/phpredmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.php
36 lines (35 loc) · 981 Bytes
/
config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
$config = Array(
'default_controller' => 'Welcome',
'default_action' => 'Index',
'production' => True,
'default_layout' => 'layout',
'timezone' => 'Asia/Tehran',
'log' => Array(
'driver' => 'file',
'threshold' => 3, /* 0: Disable Logging 1: Error 2: Notice 3: Info 4: Warning 5: Debug */
'file' => Array(
'directory' => 'logs'
)
),
'database' => Array(
'driver' => 'redis',
'mysql' => Array(
'host' => 'localhost',
'username' => 'root',
'password' => 'root'
),
'redis' => Array(
'host' => 'localhost',
'port' => '6379',
'password' => Null,
'database' => 0
)
),
'session' => Array(
'lifetime' => 7200,
'gc_probability' => 2,
'name' => 'phpredminsession'
)
);
return $config;