Can not resolve issues when run jira under ssl

Dena E-Commerce August 29, 2015

Hi, I install Jira in debian server, by nginx I force jira to start by ssl certification and https domain. But when I want to resolve one issue this error appear:

"The JIRA server could not be contacted. This may be a temporary glitch or the server may be down. Close this dialog and press refresh in your browser."

In another side when run jira by 127.0.0.1:8080 it allow me to resolve issue.

you can see my nginx configuration in bellow.

Please help me to know what is problem.

Thanks in advance

server {
 listen 80;
 server_tokens off;
 server_name  my domain name;
 return 301 https://$server_name$request_uri; # enforce https
}
server {
 listen 443 ssl;
 server_tokens off;
 server_name  my domain name;

 ssl on;
 ssl_certificate /etc/ssl/certs/jira.crt;
 ssl_certificate_key /etc/ssl/certs/jira.key;

 location / {
 proxy_set_header X-Forwarded-Host $host;
 proxy_set_header X-Forwarded-Server $host;
 proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
 proxy_set_header Host $host;                   
 proxy_set_header X-Real-IP $remote_addr;       
 proxy_set_header X-Forwarded-Proto https;      
 proxy_pass http://127.0.0.1:8080/;

 }
}

1 answer

1 vote
Jonas Andersson
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.
August 30, 2015

I am not a big user of nginx, but make sure that the application base url is set to the https://<servername>

 

Suggest an answer

Log in or Sign up to answer