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
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.
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:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.