-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathposco.json
executable file
·43 lines (43 loc) · 1.02 KB
/
posco.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
{
"server" : {
"binds": [
{ "url": "ws://0.0.0.0:8080" },
{ "url": "ws://0.0.0.0:8081" },
{
"url": "wss://0.0.0.0:8443",
"httpsOptions": {
"key": "posco-srv.key.pem",
"cert": "posco-srv.cert.pem"
}
},
{
"url": "wss://[::]:8443",
"httpsOptions": {
"key": "posco-srv.key.pem",
"cert": "posco-srv.cert.pem"
}
}
],
"tunator": {
"url": "ws://127.0.0.1:4711/tunator",
"myAddr": {
"mtu": 1400,
"addrs": ["192.168.77.1/24", "fd00::cafe:affe:1/112"]
}
},
"ipStore": {
"ipv4Range" : [["192.168.77.100/24", "192.168.77.200/24"]],
"ipv6Range" : [["fd00::cafe:affe:1000/112", "fd00::cafe:affe:1064/112"]]
}
},
"client" : {
"url": "wss://posco-srv.adviser.com/posco",
"httpsOptions": {
"key": "posco-clt.key.pem",
"cert": "posco-clt.cert.pem"
},
"tunator": {
"url": "ws://127.0.0.1:4711/tunator"
}
}
}