Gibt es ein Äquivalent zu mod_proxy von Apache in IIS?
Ich habe folgende Konfiguration in der httpd.conf meines Apache (mod_proxy aktiviert):
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
Ich muss eine ähnliche Konfiguration für IIS vornehmen. Ich habe ARR (Application Request Routing) ausprobiert, konnte es aber nicht zum Laufen bringen.
Kann mir jemand helfen, dies zu erreichen?
Danke.