forked from wYaobiz/issuer-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.json
46 lines (46 loc) · 992 Bytes
/
default.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
{
"host": "localhost",
"port": "PORT",
"public": "../public/",
"serverSelectionTimeout": "SERVER_SELECTION_TIMEOUT",
"paginate": {
"default": 10,
"max": 50
},
"mongodb": {
"host": "DB_SERVICE",
"db": "DB_NAME",
"port": "DB_PORT",
"user": "DB_USER",
"password": "DB_PASSWORD"
},
"agent": {
"adminUrl": "AGENT_ADMIN_URL",
"adminApiKey": "AGENT_ADMIN_API_KEY"
},
"smtp": {
"host": "SMTP_HOST",
"port": "SMTP_PORT",
"secure": false,
"tls": {
"rejectUnauthorized": false
}
},
"emailSettings": {
"sender": "ADMIN_EMAIL",
"subject": "EMAIL_SUBJECT"
},
"publicSite": {
"url": "PUBLIC_SITE_URL"
},
"issuer": {
"name": "Issuer Name",
"offerComment": "Credential offer from Issuer Name",
"validityDays": -1,
"multiUse": false
},
"authentication": {
"jwksUri": "http://keycloak:8080/auth/realms/issuer-kit/protocol/openid-connect/certs",
"algorithms": ["RS256"]
}
}