-
-
Notifications
You must be signed in to change notification settings - Fork 161
/
config-development.json
56 lines (56 loc) · 1.25 KB
/
config-development.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
{
"system": {
"host": "<your-openhab-cloud-host>",
"listenIp": "0.0.0.0",
"port": "443",
"protocol": "https",
"logger" : {
"dir": "./logs",
"maxFiles" : "7d",
"level" : "debug",
"morganOption" : "dev"
},
"healthEndpoint" : {
"enabled" : true
}
},
"express":{
"key" : "some express key"
},
"mongodb": {
"hosts": ["127.0.0.1"],
"db": "openhab"
},
"redis": {
"host": "127.0.0.1",
"port": "6379",
"password": "secret"
},
"mailer": {
"host" : "somehost",
"port": 465,
"secureConnection": true,
"user": "someuser",
"password": "somepass",
"from": "<your-mail>"
},
"gcm" : {
"senderId": "1234567890",
"serviceFile" : "serviceAccountKey.json"
},
"apn" : {
"team": "PB1234567",
"keyId": "BLABLA1",
"host": "api.development.push.apple.com",
"defaultTopic": "es.spaphone.openhab",
"signingKey": "certs/aps/AuthKey.p8"
},
"ifttt" : {
"iftttChannelKey" : "key",
"iftttTestToken" : "token"
},
"legal": {
"terms" : "",
"policy": ""
}
}