06-17-2014 12:22 AM
Hi,
We tried reverse proxy for non gadget finesse application, working good with http but while we trying https URL getting below error.
Unable to bypass the response, it throwing security error with finesse SSL certification.
Our rule for Reverse Proxy in web.config:
---------------------------------------------------------------
<rewrite>
<rules>
<rule name="Route the requests for api" stopProcessing="true">
<match url="^finesse/(.*)" />
<conditions>
<add input="{CACHE_URL}" pattern="^(https?)://" />
</conditions>
<action type="Rewrite" url="{C:1}://172.16.6.186/finesse/{R:1}" />
<serverVariables>
<set name="HTTP_ACCEPT_ENCODING" value="" />
</serverVariables>
</rule>
<rule name="Route the requests for bosh bind" stopProcessing="true">
<match url="^http-bind(.*)" />
<conditions>
<add input="{CACHE_URL}" pattern="^(https?)://" />
</conditions>
<action type="Rewrite" url="{C:1}://172.16.6.186:7071/http-bind/{R:1}" />
<serverVariables>
<set name="HTTP_ACCEPT_ENCODING" value="" />
</serverVariables>
</rule>
</rules>
</rewrite>
Reference Link :http://blogs.iis.net/carlosag/archive/2010/04/01/setting-up-a-reverse-proxy-using-iis-url-rewrite-and-arr.aspx
Thanks,
Arul Selvan
06-17-2014 05:43 AM
IIS proxy setup is outside the scope of DevNet Developer Services.
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide