HTTPS Jira Problems

itpeopleperformance April 2, 2019

I am trying to activate jira and confluence to be able to access through HTTPS, I followed the steps indicated in https://confluence.atlassian.com/adminjiraserver073/integrating-jira-with-apache-using-ssl-861253896.html  but it does not work and when accessing Jira it gives error. Could you please help me?
Thank you

1 answer

0 votes
Kiran Panduga {Appfire}
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
April 2, 2019

Hi @itpeopleperformance , 

Sure, Community is ready to help you. 

However, you need to share the configuration details and error message you are noticing.

Thanks,

Kiran.

itpeopleperformance April 3, 2019

Hi,

I have this in my server.xml file

<Connector acceptCount="100"
connectionTimeout="20000"
disableUploadTimeout="true"
enableLookups="false"
maxHttpHeaderSize="8192"
maxThreads="150"
minSpareThreads="25"
port="8080"
protocol="HTTP/1.1"
redirectPort="8443"
useBodyEncodingForURI="true"
scheme="https"
proxyName="mypage.com"
proxyPort="443"/>

<Connector acceptCount="100"
connectionTimeout="20000"
disableUploadTimeout="true"
enableLookups="false"
maxHttpHeaderSize="8192"
maxThreads="150"
minSpareThreads="25"
port="8081"
protocol="HTTP/1.1"
redirectPort="8443"
useBodyEncodingForURI="true"/>

 

This is my httpd.conf file

 

<VirtualHost *:80>
# JIRA Proxy Configuration:
<Proxy *>
Order deny,allow
Allow from all
</Proxy>

SSLProxyEngine On
ProxyRequests Off
ProxyPreserveHost On
ProxyPass /jira http://myweb.com:8080/jira
ProxyPassReverse /jira http://myweb.com:8080/jira
SSLCertificateFile /etc/ssl/certs/myweb.com.crt
SSLCertificateKeyFile /etc/pki/tls/private/myweb.com.key
SSLCertificateChainFile /etc/pki/tls/certs/myweb.com.bundle
</VirtualHost>

 

This is the error:

error jira.png

Kiran Panduga {Appfire}
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
April 3, 2019
Hi,

Try including this in  server.xml 

secure="true"



 In httpd conf include the below entry and then restart apache and JIRA

RewriteEngine On

RewriteCond %{HTTP} off

RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI}


 Thanks,

Kiran

Suggest an answer

Log in or Sign up to answer