-
Notifications
You must be signed in to change notification settings - Fork 0
/
conf.js
40 lines (35 loc) · 771 Bytes
/
conf.js
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
module.exports = {
// listen port
listen_port: 80,
// http settings
http: true,
html_webroot: "http://www.quovadeez.com/html",
sitename: "Quo Vadeez",
// api settings
api: true,
// mysql settings
db: {
type: "mysql",
database: "main",
host: "127.0.0.1",
port: "3306",
username: "root",
// password: "password"
password: ""
},
// email settings - see https://github.com/andris9/Nodemailer
email: {
from: "noreply@quovadeez.com",
transporter: require("nodemailer-smtp-transport")({
port: 465,
host: "r1-chicago.webserversystems.com",
secure: true,
auth: {
user: "noreply@quovadeez.com",
pass: "ppF@r0BV)Th5"
}
})
},
// salt (used for hashing passwords and such)
salt: "3094sjdlkr23j4rsdflkj4tpijghsljkhjsd"
};