Hello,
I've been struggling with this for weeks now. I'm a newcomer to the forums here, but I'd be much obliged if someone could help. I have a Windows 2008 R2 server that receives all port 80 and 443 requests that come through my router. From there I want to use ARR/URL Rewrite as a reverse proxy. It works marvelously when I'm routing to other IIS servers. However, on one server I run SVN (using Apache), and whenever I try to route to that server I get a 502.3 error.
web address: https://<domainname>/svn
<rule name="svn" stopProcessing="true">
<match url="svn*" />
<conditions logicalGrouping="MatchAll" />
<action type="Rewrite" url="https://figtreesvn/{R:0}" />
</rule>
The other thing to note is if I try to access https://figtreesvn/svn from the local network it works just fine. Any help would be greatly appreciated.