HAproxy to web host sub directory

haproxy

Hi for reasons outside my control, I need to load balance two servers, that run a non-virtual host enabled app on IIS.

Normally in HAProxy I would load balance servers(apache, tomcat, etc) like this :

acl is_www_example_com hdr_end(host) -i www.example.com
use_backend www_example_com if is_www_example_com

backend www_example_com
  balance roundrobin
  cookie SERVERID insert nocache indirect
  option httpchk HEAD / HTTP/1.0
  option httpclose
  option forwardfor
  server node1 192.168.1.1:80 cookie node1
  server node1 192.168.1.2:80 cookie node1

Which will route to the node 1 and node 2 server and serve up the virtual host site.
if I need to route to www.example.com/application/data

How would I be able to do it, with the above example, if at all even possible?

Best Answer

You can use a regex search and replace it with a string, like so --

reqrep  <search> <string>
reqirep <search> <string>   (ignore case)
  Replace a regular expression with a string in an HTTP request line
  May be used in sections :   defaults | frontend | listen | backend
                                 no    |    yes   |   yes  |   yes
  Arguments :
    <search>  is the regular expression applied to HTTP headers and to the
              request line. This is an extended regular expression. Parenthesis
              grouping is supported and no preliminary backslash is required.
              Any space or known delimiter must be escaped using a backslash
              ('\'). The pattern applies to a full line at a time. The "reqrep"
              keyword strictly matches case while "reqirep" ignores case.

    <string>  is the complete line to be added. Any space or known delimiter
              must be escaped using a backslash ('\'). References to matched
              pattern groups are possible using the common \N form, with N
              being a single digit between 0 and 9. Please refer to section
              6 about HTTP header manipulation for more information.
Related Topic