-
Notifications
You must be signed in to change notification settings - Fork 15
/
config-example.json
68 lines (68 loc) · 1.64 KB
/
config-example.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
58
59
60
61
62
63
64
65
66
67
68
{
"version": "1.0",
"zookeepers": [
"zookeeper"
],
"clusterId": "",
"commonConfig" : {
"dxApiBasePath" : "/ngsi-ld/v1",
"adminBasePath": "/admin/gis"
},
"modules": [
{
"id": "iudx.gis.server.apiserver.ApiServerVerticle",
"ssl": true,
"httpPort": 12344,
"keystore": "",
"keystorePassword": "",
"verticleInstances": 2,
"catServerHost": "",
"catServerPort": 0
},
{
"id": "iudx.gis.server.authenticator.AuthenticationVerticle",
"verticleInstances": 1,
"audience": "",
"authServerHost": "",
"catServerHost": "",
"catServerPort": 0,
"jwtIgnoreExpiry": true,
"iss": ""
},
{
"id": "iudx.gis.server.metering.MeteringVerticle",
"verticleInstances": 1
},
{
"id": "iudx.gis.server.database.postgres.PostgresVerticle",
"verticleInstances": 1,
"databaseIp": "",
"databasePort": 1234,
"databaseName": "",
"databaseUserName": "",
"databasePassword": "",
"poolSize": 25
},
{
"id": "iudx.gis.server.databroker.DataBrokerVerticle",
"verticleInstances": 1,
"dataBrokerIP": "",
"dataBrokerPort": 5468,
"dataBrokerUserName": "",
"dataBrokerPassword": "",
"connectionTimeout": 6000,
"requestedHeartbeat": 60,
"handshakeTimeout": 6000,
"requestedChannelMax": 5,
"networkRecoveryInterval": 500,
"automaticRecoveryEnabled": true,
"prodVhost": "",
"internalVhost": "",
"externalVhost": ""
},
{
"id": "iudx.gis.server.cache.CacheVerticle",
"verticleInstances": 1
}
]
}