Apache ProxyPass and ProxyPassReverse equivalent in IIS

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.

+4
source share
1 answer

I believe that you are looking for application request routing . For example, StackOverflow already has a lot, like this one .

+3
source

Source: https://habr.com/ru/post/1440212/


All Articles