Hi HA-Proxy guys,
I wonder whats the current state of the art to automate the registration of
backend. My setup runs in on EC2 and I run HA-Proxy in front of local
applications to easy administration. So a typical config file would be like
this.
frontend http
bind *:8080
acl is-auth path_beg /auth
acl is-core path_beg /core
use_backend auth if is-auth
use_backend core if is-core
backend auth
server auth-1 localhost:7778 check
backend core
server core-1 localhost:10000 check
All applications are installed via RPMs and I would like couple the
installation with the backend registration. I like to do this as want to
configure everything in one place (the RPM) and the number of installed
applications may vary from host to host.
I'd really appreciate hint where I can find tools or whats the current state to
handle this kind of task.
Cheers,
Jens