So I have server A running Confluence and Server B running Jira. Apache is running on Server A with the following conf:
NameVirtualHost *:80
<VirtualHost *:80>
ServerName confluence.corp.com
ServerAlias confluence
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyPreserveHost On
ProxyRequests Off
ProxyPass /fisheye http://confluence.corp.com:8060/fisheye nocanon
ProxyPassReverse /fisheye http://confluence.corp.com:8060/fisheye
<Location /fisheye>
Order allow,deny
Allow from all
</Location>
ProxyPass /jira http://jira.corp.com:8080/jira nocanon
ProxyPassReverse /jira http://jira.corp.com:8080/jira
<Location /jira>
Order allow,deny
Allow from all
</Location>
ProxyPass / http://confluence.corp.com:8090/ nocanon
ProxyPassReverse / http://confluence.zulily.com:8090/
<Location />
Order allow,deny
Allow from all
</Location>
</VirtualHost>
<VirtualHost *:443>
SSLEngine On
SSLCertificateFile /etc/ssl/certs/star.corp.com.crt
SSLCertificateKeyFile /etc/ssl/private/star.corp.com.key
ProxyPass / http://confluence.corp.com:8090/ nocanon
ProxyPassReverse / http://confluence.com:8090/
</VirtualHost>
I also added proxyName=
"confluence.corp.com"
proxyPort=
"443"
scheme=
"https"
secure=
"true" to my server.xml on confluence.
Basically I can access my server by going to confluence.corp.com and JIRA at confluence.corp.com/jira. When I switch to https confluence works perfectly but JIRA just comes up as page cannot be displayed.
I've tried all sorts of things to get it to work but I am at my wits end. Any ideas would be helpful.
Please use the code block! And where have you configured JIRA for SSL?
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.