-
Notifications
You must be signed in to change notification settings - Fork 30
/
config.js
44 lines (43 loc) · 1.39 KB
/
config.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
41
42
43
44
const dpWebAccessManagementServer = 'websvr-12-64.alpha.local'
module.exports = {
site: {
host: 'bank.alpha.local',
port: 443,
sslCertificate: {
pfxFilename: 'certificates/ssl.pfx',
passphrase: 'test'
},
serviceIdentity: {
username: "cam@alpha.local",
password: "aaaAAA123"
}
},
endpoints: {
auth: `https://${dpWebAccessManagementServer}/DPWebAUTH/DPWebAUTHService.svc`,
enroll: `https://${dpWebAccessManagementServer}/DPWebEnroll/DPWebEnrollService.svc`,
policies: `https://${dpWebAccessManagementServer}/DPWebPolicies/DPWebPolicyService.svc`,
claims: `https://${dpWebAccessManagementServer}/DPWebClaims/DPWebClaimsService.svc`,
admin: `https://${dpWebAccessManagementServer}/DPWebAdmin/DPWebAdminService.svc`,
u2fAppId: `https://${dpWebAccessManagementServer}/DPFido/app-id.json`
},
accounts: {
maxAccountAge: 30,
},
notifications: {
onDelete: {
sendMail: true,
},
},
mail: {
from: 'no-reply@alpha.local',
smtp: {
host: 'barracuda.crossmatch.net',
port: 25,
secure: false,
// auth: {
// user: 'cam@alpha.local',
// pass: 'aaaAAA123'
// }
},
}
}