@gytrdun wrote:
Hello, we have backend servers that responds to something like
https://servername1.domain.com:9900/someurl
https://servername2.domain.com:9900/someurlI’m having a hard time figuring out how to get it to work. I’d like to hit http://haproxy.domain.com/someurl, or even http://haproxy.domain.com:9900/someurl.
I’ve tried every iteration that I can find in the haproxy.conf, but nothing seems to work.
This is my current config, which I know is incorrect, but just to let you know where I’m at:
frontend localnodes
bind *:80
bind *:9900
option tcplog
mode tcp
default_backend nodesbackend nodes
mode tcp
balance roundrobin
option tcp-check
server servername1 12.12.12.12:9900 check
Posts: 6
Participants: 2