Install IIS
Install arr 3.0 from webpi
Open IIS Management Console (inetmgr), select the server node.
On the right panel, open "appliation Request Routing cache", then click "server Proxy Settings", in the next page, check "enable proxy", choose "pass through ", then "Apply ".
Back to the default panel, find "configuration Editor". Add a rule in system. webserver/Rewrite/globalrules section follow the parameters in below Configuration:
<rewrite> <globalRules> <rule name="Proxy" patternSyntax="Wildcard" stopProcessing="true"> <match url="*" /> <conditions> <add input="{HTTP_HOST}" pattern="*" /> </conditions> <action type="Rewrite" url="http://{C:0}/{R:0}" /> </rule> </globalRules> </rewrite>
If you are using azure Vm, please go to the management portal open port 80 in the VM's endpoint configuration panel.
And finally, this proxy only supports HTTP, but not HTTPS.
Using arr to setup a proxy