We have configured SSL to jira with reverse proxy using NGNIX, Its working fine with Proxy name, but when we tried running Jira using Hostname or localhost its not running.
So both Proxy name and Host name uses the same port 9996.
We are looking for the solution to run Jira on both proxy name and Host name.
If the system is working ok when you use it on the proxy, then you don't have anything else to do really.
It sounds like your network is (rightly) firewalling off direct access to the IP address, which you don't want to use anyway, because it won't work properly, as it's not going to be the base-url.
Hello Nick,
I missed to use the context path name while running the JIRA, once I used conext path name its working fine.
How can we redirect JIRA from http to https?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Put a redirect in the http site.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Ravichandra_Itagihave you tried to use host name IP_Address:port ?
for example: https:172.28.9.121: 9996 , if it worked with IP then you will need to do this with DNS setting.
Best!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yeah tried with IP address too but its not working with IP address too.
It's only working fine with proxy name
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.
May I Know what configurations do I need to do in NGINX still?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Ravichandra_ItagiIn /etc/nginx/nginx.conf file will need to perform changes incase of Unix/Linux like operating system. so if every thing is working fine as you said, host name is the same as server name but need to verify that host name in /etc/hostname
is the same you are using in nginx.conf file and also you need to verify your server IP address and server name is in /etc/hosts .
And also check fire wall setting because it should work with IP adress.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Moses,
I missed to use the context path name while running the JIRA, once I used conext path name its working fine.
How can we redirect JIRA from http to https?
Thank you.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Ravichandra_ItagiI don't have this requirement in my configuration but i was hoping that in the nginx.conf file you could do some thing like this
please test first before doing it in production environment
location /
{
............
............
proxy_pass http://localhost:9998;
proxy_read_timeout 90;
proxy_redirect http://localhost:9998 https://IP_Adress:9989;
}
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.