Follow the instruction of Confluence, I have successfully installed the SSL for my confluence site on: https://wiki.example.com.
Then I need to setup another website on the same VPS (in my case: manager.io) on the same VPS, which runs a plain http over port 8080.
Since tomcat is installed with Confluence, how can I modify the setup of the tomcat in Confluence to enable the SSL connection on port 8080?
The Tomcat configuration is under Step 3 on Running Confluence Over SSL or HTTPS. You may change the port from 8443 to 8080:
<Connector port="8080"
You will need a reverse proxy in front of the server unless you want to use a URL with the port, like https://wiki.example.com:8080
Here are docs for two free proxies:
Proxying Atlassian server applications with Apache HTTP Server (mod_proxy_http)
It's fine for me to run the second website use a URL with the port.
Currently, in my server.xml contains two <Connector>
<Connector port="8080"
and
<Connector port="8443"
Do you mean I should add another Connector behind 8443 with contains:
<Connector port="8080"
And use similar approach to generate .keystore file for the second website?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.