Problem:
I have upgraded Confluence from 6.15.7 to 7.13.0 on a Windows VM. The Confluence runs fine on built-in Apache server after the upgrade and it is accessible via http://localhost:8190 . However, I want to set up the reverse proxy settings on IIS as well so that it can be accessed via domain url https://confluence.domainname.com.au. I have set up URL rewrite rules and followed the steps from the kb https://confluence.atlassian.com/kb/proxying-atlassian-server-applications-with-microsoft-internet-information-services-iis-833931378.html . But when I try to access the Confluence via url, I get a blank screen. There is no network activity when viewed via the Dev Tools on the browser.
The rules in the web,config are
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<clear />
<rule name="HTTP/S to HTTPS Redirect" enabled="true" stopProcessing="true">
<match url="(.*)" />
<conditions logicalGrouping="MatchAny" trackAllCaptures="false">
<add input="{HTTPS}" pattern="^OFF$" />
</conditions>
<action type="Redirect" url="https://{HTTP_HOST}/{R:1}" redirectType="SeeOther" />
</rule>
<rule name="jira-localhost-rewrite" stopProcessing="true">
<match url="(.*)" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false" />
<action type="Rewrite" url="http://localhost:8190/{R:1}" />
</rule>
</rules>
</rewrite>
<security>
<requestFiltering allowDoubleEscaping="true" />
</security>
<httpRedirect enabled="false" destination="https://confluence.domainname.com.au/" />
<caching enabled="false" enableKernelCache="false" />
</system.webServer>
</configuration>
The Connector settings is
<Connector port="8190"
connectionTimeout="20000"
redirectPort="8443"
maxThreads="48"
minSpareThreads="10"
enableLookups="false"
acceptCount="10"
debug="0"
URIEncoding="UTF-8"
protocol="HTTP/1.1"
proxyName="confluence.domainname.com.au"
proxyPort="443"
scheme="https" />
Any help would be greatly appreciated.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.