forked from eclipse-thingweb/node-wot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wot-servient.conf.json
57 lines (57 loc) · 1.58 KB
/
wot-servient.conf.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
{
"servient": {
"_staticAddress": "plugfest.thingweb.io",
"scriptDir": ".",
"scriptAction": true
},
"http": {
"port": 8080,
"allowSelfSigned": true
},
"coap": {
"port": 5683
},
"mqtt": {
"broker": "mqtt://test.mosquitto.org",
"_username": "username",
"_password": "password",
"_clientId": "uniqueId",
"protocolVersion": 5
},
"opcua": {
"subscriptionOptions": {
"requestedPublishingInterval": 1000,
"requestedLifetimeCount": 100,
"requestedMaxKeepAliveCount": 10,
"maxNotificationsPerPublish": 100,
"publishingEnabled": true,
"priority": 10
}
},
"log": {
"level": "info"
},
"credentials": {
"urn:dev:wot:org:eclipse:leshan": {
"identity": "node-wot",
"psk": "hello"
},
"urn:dev:wot:org:eclipse:cf-secure": {
"identity": "password",
"psk": "sesame"
},
"urn:dev:wot:org:eclipse:netconf-example": {
"username": "root",
"password": "root"
},
"urn:dev:wot:org:eclipse:opcua-example-certificate": {
"clientCertificate": "~/certificates/client_cert.pem",
"clientPrivateKey": "~/certificates/client_private_key.pem",
"serverCertificate": "~/certificates/server_cert.pem"
},
"urn:dev:wot:org:eclipse:opcua-example-password": {
"username": "root",
"password": "root"
}
}
}