I have Jira Service Desk and Confluence running on the same server. This is my intended setup:
- support.mydomain.com -> Service Desk
- support.mydomain.com/wiki -> Confluence
Currently:
- support.mydomain.com works as expected. Visiting this address on port 80 loads Jira Service Desk which is listening on port 8080.
- support.mydomain.com/wiki does not work as expected. This takes me to a "Oops, you've found a dead link." page. However, support.mydomain.com:8090/wiki does work
Seeing as :8090/wiki works, I would assume the issue lies with either the confluence connector or my vhost configuration?
Connector:
<
Connector port="8090"
connectionTimeout="20000"
redirectPort="8443"
maxThreads="48"
minSpareThreads="10"
enableLookups="false"
acceptCount="10"
debug="0"
URIEncoding="UTF-8"
protocol="org.apache.coyote.http11.Http11NioProtocol"
proxyName="support.mydomain.com"
proxyPort="80"
scheme="http"
/>
vhost:
<VirtualHost *:80>
ServerName support.mydomain.com
ProxyRequests Off
ProxyVia Off
<Proxy *>
Require all granted
</Proxy>
ProxyPass / http://127.0.0.1:8080/
ProxyPassReverse / http://127.0.0.1:8080/
ProxyPass /wiki http://127.0.0.1:8090/wiki
ProxyPassReverse /wiki http://127.0.0.1:8090/wiki
</VirtualHost>
I would appreciate any guidance!
Thank you,
Michael