-
Notifications
You must be signed in to change notification settings - Fork 0
WebFramework LoadBalancer settings
Semyon Gritsenko edited this page May 3, 2021
·
2 revisions
WebFramework LoadBalancer uses this list of settings:
in WebFrameworkLoadBalancer section:
- loadBalancerIp(default: 0.0.0.0)
- loadBalancerPort(default: 80)
- loadBalancerTimeout(default: 0) // wait for connection (0 means infinite wait)
- listOfServers // map of connection data to all servers
{
"WebFrameworkLoadBalancer": {
"loadBalancerIp": "0.0.0.0",
"loadBalancerPort": "80",
"loadBalancerTimeout": 0,
"listOfServers": {
"127.0.0.1": [
"8500"
],
"192.168.0.4": [
"8501"
]
}
}
}