Jira SSL with Apache intergration

josh wallace October 6, 2014

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.

1 answer

0 votes
Adrian Moerchen
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
October 6, 2014

Please use the code block! And where have you configured JIRA for SSL?

Suggest an answer

Log in or Sign up to answer