I did do the following:
- Uncommented https connector:
<Connector port="8444" protocol="org.apache.coyote.http11.Http11NioProtocol"
relaxedPathChars="[]|" relaxedQueryChars="[]|{}^\`"<>"
maxThreads="150" minSpareThreads="25"
maxHttpHeaderSize="8192" SSLEnabled="true"
enableLookups="false" disableUploadTimeout="true"
acceptCount="100" scheme="https" secure="true"
sslEnabledProtocols="TLSv1.2"
clientAuth="false" useBodyEncodingForURI="true"
keyAlias="jira" keystoreFile="C:\Program Files\Atlassian\JIRA\jira.jks" keystorePass="XXX" keystoreType="JKS"/>
- Forward on http connector:
<Connector port="8090" connectionTimeout="20000" redirectPort="8444"
maxThreads="48" minSpareThreads="10"
enableLookups="false" acceptCount="10" debug="0" URIEncoding="UTF-8"
protocol="org.apache.coyote.http11.Http11NioProtocol"/>
- Restarted Confluence service.
Now, when I go to:
https://localhost:8444, I can connect to Confluence fine. It loads the right certificate (I do get a warning off course, name mismatch, but I can see the fqdn in the cert).
But, when I go to:
https://confluence.domain.com:8444 it will not load the page at all.
I have set the base url in Confluence config to:
http://confluence.domain.com:8090. I'm afraid to change this to https://confluence.domain.com:8444 because I might get locket out?
Jira is running on the same server, on ports 8080 and 8443, which works fine. I have no NGINX or other proxy's on the server.
Anyone know how I can change the config to get it to load on https://confluence.domain.com?
Confluence version: 7.02.
Kind regards