-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.php.dist
executable file
·69 lines (69 loc) · 1.96 KB
/
config.php.dist
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?php
define('DEBUG',true);
if (!defined('DEBUG')) define('DEBUG',true);
if (!defined('MAINTENANCE')) define('MAINTENANCE',false);
$config = array(
'enviroment' => 'production', //production
//'enviroment' => 'development'
'log' => array(
'filename' => '../resources/logs/'.date('Y-m-d').'.log',
'hipchat' => array(
'token' => '',
'room' => '',
'name' => '',
'notify' => false,
'bubble' => true, //Whether the messages that are handled can bubble up the stack or not
'useSSL' => true
),
'filenameQuery' => realpath(BASE_DIR.'/resources/logs/').'/'.date('Y-m-d').'-query.log',
'filenameCron' => realpath(BASE_DIR.'/resources/logs/').'/'.date('Y-m-d').'-cron.log',
'level' => 'DEBUG',
'loggy' => array(
'token' => ''
)
),
'db' => array(
'type' => 'mysql', //pgsql
'user' => '',
'password' => '',
'host' => '',
'database' => ''
),
'smtp' => array(
'host' => '',
'port' => ,
'security' => 'ssl', //ssl,tls,null
'username' => '',
'password' => ''
),
'email_sender' => array('x@x' => ''),
'title' => 'Return To Dreamland',
'template_dir' => '../resources/templates/',
'import' => array(
'upload_dir' => '../resources/uploads/'
),
'wordpress' => array(
'url' => 'http://xx.xx.xx.xx:8080/wordpress/',
'username' => '',
'password' => ''
),
'mailgun' => array(
'key' => '',
'pubkey' => '',
'domain' => '',
'salt' => ''
),
'sfide' => array(
'secret' => ''
),
'google' => array(
'analytics' => ''
),
'data_chiusura' => '2005-06-01T00:01:00+0000',
'cookies.lifetime' => '20 minutes',
'cookies.encrypt' => true,
'cookies.secure' => true,
'cookies.secret_key' => 'VERYSECURE',
'security.salt' => ''
);
?>