HAProxy - forward to a different web server based on URI
- by Saggi Malachi
I have an HTTP farm with the following configuration:
listen webfarm 10.254.23.225:80
mode http
balance roundrobin
cookie SERVERID insert
option httpclose
option forwardfor
option httpchk HEAD /check.txt HTTP/1.0
server webA 10.254.23.4:80 cookie A check
server webB 10.248.23.128:80 cookie B check
I would like to add some option which would forward all requests for a specific URI (i.e /special) to a 3rd web server. How should I do it?