Add some provisions for https into haproxy and the cluster

This commit is contained in:
Matthew Jones
2017-01-03 13:59:12 -05:00
parent 1acbbc3ebb
commit 9f777f6153
3 changed files with 13 additions and 9 deletions

View File

@@ -17,6 +17,11 @@ frontend localnodes
mode http
default_backend nodes
frontend localnodes_ssl
bind *:8043
mode tcp
default_backend nodes_ssl
frontend flower
bind *:5555
mode http
@@ -39,6 +44,13 @@ backend nodes
server tower_2 tower_2:8013 check
server tower_3 tower_3:8013 check
backend nodes_ssl
mode tcp
balance roundrobin
server tower_1 tower_1:8043
server tower_2 tower_2:8043
server tower_3 tower_3:8043
backend flower_nodes
mode http
balance roundrobin