-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_config.php.default
48 lines (39 loc) · 975 Bytes
/
_config.php.default
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
<?php
//Database Configuration
$DB_SERVERS = array (
//master
'db' =>
array(
'hostname' => ''
, 'username' => ''
, 'password' => ''
, 'default_db' => ''
),
//replication slave (only 1 supported right now)
'db_repl' =>
array(
'hostname' => ''
, 'username' => ''
, 'password' => ''
, 'default_db' => ''
),
//add more servers as needed
'another_server' =>
array(
'hostname' => ''
, 'username' => ''
, 'password' => ''
, 'default_db' => ''
)
);
$MAIL_CONFIG = array (
"mail_to" => "" //email for system admin that will recieve notifications and errors
,"mail_from" => "" //email used for reply-to (can be anything)
,"mail_name" => "Interactive monitor" //name of the notification bot
//SMTP Setup
,"smtp_host" => "ssl://smtp.gmail.com" // sets GMAIL as the SMTP server
, "port" => 465 // set the SMTP port for the GMAIL server
, "username" => "" // GMAIL username
, "password" => "" // GMAIL password
)
?>