We are trying to run jira in https, with a nginx proxy and we have this error

TIC DSG July 17, 2017

The Base URL for gadgets health check has failed in your system.

  • Find out more
  • Don’t remind me again
 

1 answer

0 votes
Stefan Arnold
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.
July 17, 2017

Base URL in Jira correctly set to the https link?

Correct proxy configuration in jira server.xml?

TIC DSG July 17, 2017

Yes I've changed Base URL with https:// url

 

I don't know what I have to change in server.xml configuration.

Can you help me?
Thanks.

Stefan Arnold
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.
July 17, 2017

In you server.xml you find the section <Connection>

There you need to enter the proxy information.

This is the part from my server.xml:

 <Connector port="8080"
address="127.0.0.1"
maxThreads="150"
minSpareThreads="25"
connectionTimeout="20000"

enableLookups="false"
maxHttpHeaderSize="8192"
protocol="HTTP/1.1"
useBodyEncodingForURI="true"
redirectPort="8443"
acceptCount="100"
disableUploadTimeout="true"
bindOnInit="false"
proxyName="yourProxynName.com"
proxyPort="443"
scheme="https"
secure="true"
/>

 Configuring NGINX and the Tomcat Connector is also described here:

https://confluence.atlassian.com/jirakb/integrating-jira-with-nginx-426115340.html

Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
July 17, 2017

It's usually the proxyName, proxyPort and scheme settings that are wrong, as they have to be added to make a proxy work with Atlassian applications.

TIC DSG July 17, 2017

Thanks! I still have some problems but it works!

Suggest an answer

Log in or Sign up to answer