Hello everyone,
I am trying to proxy Jira with Apache, it seems to work but I have this error from the dashboard and I can't figure out where it comes from.
I have Jira 7.12 on a self-hosted debian. I followed this tutorial: https://confluence.atlassian.com/adminjiraserver0712/integrating-jira-with-apache-using-ssl-959314163.html
Here is the connector of the server.xml and the virtualhost of the apache conf file.
<Connector port="8080" relaxedPathChars="[]|" relaxedQueryChars="[]|{}^\`"<>"
maxThreads="150" minSpareThreads="25" connectionTimeout="20000" enableLookups="false"
maxHttpHeaderSize="8192" protocol="HTTP/1.1" useBodyEncodingForURI="true" redirectPort="8443"
acceptCount="100" disableUploadTimeout="true" bindOnInit="false" secure="true" scheme="https"
proxyName="subdomain.domain.fr" proxyPort="443"/>
<IfModule mod_ssl.c>
<VirtualHost *:443>
ServerName subdomain.domain.fr
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
SSLProxyEngine On
ProxyRequests Off
ProxyPreserveHost On
ProxyPass / http://subdomain.domain.fr:8080/
ProxyPassReverse / http://subdomain.domain.fr:8080/
Include /etc/letsencrypt/options-ssl-apache.conf
SSLCertificateFile /etc/letsencrypt/live/website/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/website/privkey.pem
</VirtualHost>
</IfModule>
Thanks for any help!
Three things I'd look at:
Hello,
The error I was getting was this :
For the subdomain, it is because I used Jira with plain http and this subdomain and I now want to keep this subdomain but go with https. I also don't want to put out on the open internet my domain name, I think you can understand :)
By the way, I found the problem. When following the documentation, it is not said that you need to delete the standard connector, which I didn't.
In the server.xml file though, it is said to comment it out. I did it and it worked!
Thank you for your suggestions!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.