forked from includeos/IncludeOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
40 lines (39 loc) · 772 Bytes
/
config.json
File metadata and controls
40 lines (39 loc) · 772 Bytes
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
{
"net" : [
{
"iface": 0,
"config": "static",
"address": "10.0.0.68",
"netmask": "255.255.255.0",
"gateway": "10.0.0.1"
},
{
"iface": 1,
"config": "static",
"address": "10.0.0.69",
"netmask": "255.255.255.0",
"gateway": "10.0.0.1"
}
],
"load_balancer" : {
"clients" : {
"iface" : 0,
"port" : 443,
"waitq_limit" : 1000,
"session_limit" : 1000,
"certificate": "/test.pem",
"key": "/test.key"
},
"nodes" : {
"iface" : 1,
"active_check" : true,
"algo" : "round_robin",
"list" : [
["10.0.0.1", 6001],
["10.0.0.1", 6002],
["10.0.0.1", 6003],
["10.0.0.1", 6004]
]
}
}
}