-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json
54 lines (41 loc) · 1.25 KB
/
config.json
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
{
"service_name":"TicketChain",
"log_file_path": "/var/log/",
"production": false,
"process_user": "ubuntu",
"process_group": "ubuntu",
"cluster":1,
"cluster_nodes": 4,
"enable_http":1,
"enable_https":0,
"http_port" : 8080,
"https_port": 443,
"ssl":{
"ca" : "cert/api-.ca-bundle",
"cert": "cert/api_.crt",
"key": "cert/api-.key"
},
"db": {
"uri": "mongodb://localhost:27017/ticketchain",
"user":"",
"pass":""
},
"mail":{
"lang": "eng",
"service":"yandex",
"user":"[email protected]",
"pass":"P@ssw0rd",
"reply_to":"[email protected]",
"send_copy_to":"[email protected]",
"agreement_link":"http://www.ticketchain.ru/agreement.html",
"about_link":"http://www.ticketchain.ru/about.html",
"contacts_link":"http://www.ticketchain.ru/contacts.html",
"validation_link":"http://www.ticketchain.ru/validation.html",
"reset_link":"http://www.ticketchain.ru/reset.html"
},
"auth":{
"min_pass_len": 6,
"expires_minutes": 60,
"salt": "$2a$10$ywsX7h.cOCxsvMHgDjQih."
}
}