Is there an Apache mod_proxy equivalent in IIS?
I have the following configuration in my Apache httpd.conf (mod_proxy enabled):
Header add Set-Cookie "ROUTEID=hej.%{BALANCER_WORKER_ROUTE}e; path=/;" env=BALANCER_ROUTE_CHANGED <Proxy balancer://openfire> BalancerMember http://server2:7070/http-bind/ route=1 ProxySet stickysession=ROUTEID </Proxy> ProxyPass /project1/http-bind balancer://openfire nofailover=Off ProxyPassReverse /project1/http-bind balancer://openfire
I need to do a similar configuration for IIS. I tried ARR (Routing Application Request Routing) but couldn't get it working.
Can someone help me achieve this?
Thanks.
source share