Hello everyone!
I have Jira Data Center installed in my organization, and when I type the base URL 'https://jira.<xpto>.br' I am redirected to 'https://jira.<xpto>.br/secure/Dashboard.jspa'.
I would like to be redirected to 'https://jira.<xpto>.br/login.jsp?native_login'.
How is this redirection configured? Is it a parameter in some Jira configuration file?
@Mar ,
Do you use any redirect proxy? If so, you can perform the configuration on the proxy itself.
See if this works for you:
NGINX:
location = / {
return 302 /login.jsp?native_login;
}
APACHE:
RedirectMatch 302 ^/$ /login.jsp?native_login
Restart the proxy service to apply the changes.
Best regards.
Check this too: Solved: How to redirect to System dashboard from login.jsp...
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.
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.
Thanks! However, the proposed solution is from June 2016 for Jira 7. I was hoping to have something more current, for Jira 9 or even Jira 10.
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.