This is a clean/new install and not an upgrade. We are getting the following error on the dashboard:
JIRA is reporting that it is using the URL scheme 'http', which does not match the scheme used to run these diagnostics, 'https'. This is known to cause JIRA to construct URLs using an incorrect hostname, which will result in errors in the dashboard, among other issues.
The most common cause of this is the use of a reverse-proxy HTTP(S) server (often Apache or IIS) in front of the application server running JIRA. While this configuration is supported, some additional setup might be necessary in order to ensure that JIRA detects the correct scheme.
The following articles describe the issue and the steps you should take to ensure that your web server and app server are configured correctly:
- Gadgets do not display correctly after upgrade to JIRA 4.0
- Integrating JIRA with Apache
- Integrating JIRA with Apache using SSL
------------------------------------------------------
Our f5 passes the https/443 request to our apache layer via http/80 and apache has instructions to proxy the request to the host where Jira standalone is running.
Hi Derek,
Have you tried setting the proxyName and proxyPort in the JIRA's server.xml so that it will be aware of the proxy ? It's something like
scheme="https" proxyName="jira.example.com" proxyPort="443"
This resolved it for me:
For this:
proxyName="<
proxy_server
>"
The proxy_server is the domain that jira answers on, not the name of the server(s) actually doing the proxy-ing.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
When the load balancer sends the request to one of 5 servers,
Mind to clarify more on the 5 servers of the above statement? Did you meant that you have multiple JIRA server? Elaborate more on the statement may help other user to understand your problem better as I'm not really familiar with load balancer. ;)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
We have 5 httpd servers that proxy the request back top the one jira instance.
We have a load balancer (f5) that manages the pool of apache servers. When/If one gets overloaded, it removes that server form the pool and directs the balanced/ratioed traffic to the other 4 until the 5th recovers at which time it gets added back to the pool.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
When the load balancer sends the request to one of 5 servers, how do you specify the proxyName? Can you have multiple servers listed in proxyName?
scheme=
"https"
proxyName=
"jira.example.com"
proxyPort=
"443"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Derek,
In addition to Janet suggestion, you can read the KB article for better understanding:
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.