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>