Skip to content

Instantly share code, notes, and snippets.

@cakriwut
Last active October 22, 2016 15:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cakriwut/ebbfb75f66778bec342b11903c59607f to your computer and use it in GitHub Desktop.
Save cakriwut/ebbfb75f66778bec342b11903c59607f to your computer and use it in GitHub Desktop.
IIS Reverse Proxy Sample Rule
<configuration>
<system.serviceModel>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" />
</system.serviceModel>
<system.webServer>
<rewrite>
<rules>
<rule name="ReverseProxy" stopProcessing="true">
<match url=".*" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false">
<add input="{HTTP_HOST}" pattern="portal.contoso.com" />
</conditions>
<action type="Rewrite" url="http://internalserver:2000/{R:0}" />
<serverVariables>
<set name="HTTP_X_ACCEPT_ENCODING" value="{HTTP_ACCEPT_ENCODING}" />
<set name="HTTP_X_ORIGINAL_HOST" value="{HTTP_HOST}" />
<set name="HTTP_ACCEPT_ENCODING" value=""/>
</serverVariables>
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment