-
Notifications
You must be signed in to change notification settings - Fork 4
/
conf.production.json
57 lines (57 loc) · 1.39 KB
/
conf.production.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
55
56
57
{
"host": "localhost",
"port": 8180,
"plugins": {
"vision": {},
"inert": {},
"lout": {},
"h2o2": {},
"hapi-auth-jwt": {},
"clusterpost-auth": {
"privateKey": "someRandomKey",
"saltRounds": 10,
"algorithm": {
"algorithm": "HS256"
},
"algorithms": {
"algorithms": [ "HS256" ]
},
"mailer": {
"nodemailer": {
"host": "smtp.gmail.com",
"secure": false,
"port": 587,
"auth": {
"user": "uname",
"pass": "pass"
}
},
"from": "Probtrack <[email protected]>",
"message": "Hello @USERNAME@,<br>Somebody asked me to send you a link to reset your password, hopefully it was you.<br>Follow this <a href='@SERVER@/public/#/login/reset?token=@TOKEN@'>link</a> to reset your password.<br>The link will expire in 30 minutes.<br>Bye."
},
"userdb" : {
"hostname": "http://localhost:5984",
"database": "clusterjobs"
}
},
"couch-provider": {
"default" : "clusterjobs",
"clusterjobs" : {
"hostname": "http://localhost:5984",
"database": "clusterjobs"
},
"namespace": "clusterprovider"
},
"clusterpost-provider": {
"executionservers" : {
"testserver" : {
"hostname" : "localhost",
"user" : "cluster",
"identityfile" : "/home/.ssh/someKey",
"sourcedir" : "/home/cluster/source/clusterpost-execution/"
}
}
},
"civility-static" : {}
}
}