Jira version: 7.4.0
After I put jira behind apache mod_proxy with ssl I can't access dashboard - I got completly blank page, with no JavaScripts or other erros in browser console. Any other part of Jira works fine if by url eg to: https://....../issues/?filter=-1 I will see menu and can work normally.
But I get access to administrative functions and back to dashboard - evrything dashboard works fine.
It is clean installation with no extra gadgets on dashboard.
Apache config (jira.host.name = FQDN of my proxy server):
<VirtualHost *:80>
ServerName jira.host.name
Redirect / https://jira.host.name
</VirtualHost>
<VirtualHost *:443>
SSLEngine on
SSLProtocol all -SSLv2 -SSLv3
SSLCertificateFile /etc/letsencrypt/live/...../cert.pem
SSLCertificateKeyFile /etc/letsencrypt/live/..../privkey.pem
SSLCertificateChainFile /etc/letsencrypt/live/.../chain.pem
ServerName jira.host.name
CustomLog ${APACHE_LOG_DIR}/jira.log combined
ErrorLog ${APACHE_LOG_DIR}/jira-error.log
ProxyPass / http://jira:8080/
ProxyPassReverse / http://jira:8080/
ProxyRequests Off
ProxyVia Off
ProxyPreserveHost On
</VirtualHost>
Jira server.xml
<Service
name="Catalina">
<Connector
port="8080"
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="jira.host.name"
proxyPort="443"
scheme="https"
/>
Did you update the baseurl in General configuration?
Is there anything in the logfiles?
Can you use the network monitor of your browser to see which requests are failing and where they are pointing to?
yes I did.
In log files - nothing bad, no Exceptions.
yes, all request are pointing right, eg:
https://jira.cubecloud.pl/rest/api/1.0/shortcuts/74002/995cd2eaa79e6543b58f399fb66e5383/shortcuts.js
After login (but browser is still waiting):
other than dashboard url:
I can provide login and password (with same safe way) to my Jira - this is fresh installation with nothing inside.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
So the browser is actually still waiting for something when you get the blank page? Have you tried waiting until it times out? Does that give a line with an error code in the network monitor?
Have you tried another browser / completely clearing the cache for the domain?
I see that you are using Jira 7.4.0, any specific reason for the old version and not the latest?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
after some time browser stop loading and I got net::ERR_INCOMPLETE_CHUNKED_ENCODING::
I try'ed from other browser on different computer - the same.
There is no reason to use 7.4.0 - i can upgrade it to latest if it can help.
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.
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.