kryptokronad behind HAProxy
#---------------------------------------------------------------------
# main frontend which proxys to the backends
#---------------------------------------------------------------------
frontend main *:11898
default_backend trtl-daemon
#---------------------------------------------------------------------
# round robin balancing between the various backends
#---------------------------------------------------------------------
backend trtl-daemon
balance roundrobin
option httpchk GET /getinfo
http-check expect rstring true
# Local node on port 11999
server app1 127.0.0.1:11999 check
server app2 < node host1 >:11898 check
server app3 < node host2 >.11898 check
server app4 < node host3 >:11898 checkLast updated