-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathdefault.json
54 lines (54 loc) · 1.04 KB
/
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
47
48
49
50
51
52
53
54
{
"server": {
"hostname": "0.0.0.0",
"publicFhirBase": "http://localhost:3447/fhir",
"port": 3447,
"fhirVersion": "stu3"
},
"mongodb": {
"url": "mongodb://localhost/hearth"
},
"authentication": {
"type": "disabled",
"enablePublicUserCreation": false,
"jwt": {
"algorithm": "HS256",
"secret": null,
"privKey": null,
"pubKey": null,
"issuer": "Hearth",
"setAudience": "hearth/example-app1",
"validateAudience": null,
"expiresIn": "1d"
}
},
"logger": {
"level": "info"
},
"idGenerator": "uuidv4",
"atnaAudit": {
"enabled": true,
"interface": "udp",
"host": "localhost",
"port": 5050,
"certOptions": {
"key": null,
"cert": null,
"ca": null
}
},
"matchingQueue": {
"numberOfWorkers": 0,
"pollingInterval": 1000
},
"validation": {
"enabled": false,
"additionProfilePaths": [
"lib/fhir/profiles/mhd"
]
},
"operations": {
"updateCreate": false
},
"knownIdentityDomains": []
}