Here is my scenario.
My Load Balancer handles SSL requests, but my real servers don't. I have an
SSLProxy running on the Load Balancer. Question is: Can I actually load
balance the requests 441 to real servers port 80? Many thanks!
I set the config like this:
virtual=xxx.xxx.xxx.xxx:441
service=https
fallback=127.0.0.1:441
request="index.html"
receive="Test Page"
scheduler=rr
protocol=tcp
checktype=negotiate
real=192.168.0.233:80 masq 1
real=192.168.0.234:80 masq 1
But after running ldirectord
/sbin/ipvsadm -L -n
Gives the following:
TCP xxx.xxx.xxx.xxx:441 rr
-> 192.168.0.233:441 Masq 0 0 0
-> 192.168.0.234:441 Masq 0 0 0
-> 127.0.0.1:441 Local 1 0 0
|