Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

unable to redirect https page from one webserver to another webserver on IIS.

Ravi Mareachealee
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
November 22, 2018

Dear Colleagues I am seeking your help to redirect the software web page Jira using https from one Webserver to another webserver on IIS and load balancer. The codes are below:-

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<handlers>
<add name="php" path="*.php" verb="*" modules="IsapiModule" scriptProcessor="D:\xyz\php-5.2.5-Win32\php5isapi.dll" resourceType="Unspecified" />
</handlers>
<rewrite>
<rule name="Reverse Proxy to Jira" enabled="true" stopProcessing="true">
<match url="^Jira(.*)" />
<conditions logicalGrouping="MatchAny">
</conditions>
<action type="Rewrite" url="https://servername/Jira{R:1}" redirectType="Permanent" />
</rule>
</rules>
</rewrite>
<tracing>
<traceFailedRequests>
<add path="*">
<traceAreas>
<add provider="WWW Server" areas="Authentication,Security,Filter,StaticFile,CGI,Compression,Cache,RequestNotifications,Module" verbosity="Verbose" />
</traceAreas>
<failureDefinitions timeTaken="00:00:00" statusCodes="200,500-510" />
</add>
</traceFailedRequests>
</tracing>
</system.webServer>
</configuration>

 

0 answers

Suggest an answer

Log in or Sign up to answer