Dear All
i want connect Jira and Confluence with application link.
both server behind nginx as reverse proxy
and both server Accessible from reverse proxy
also i can run succesfully curl -k -L https://reverseproxy.local/jira from confluence
and run curl -k -L https://reverseproxy.local/confluence from jira server
i creatd application link between jira and confluence but i faced with this error :
my local authentication for incoming and outgoing in application link is :
OAuth (impersonation)
(also test OAuth)
-----------------------------------------------------------------------------------------------------------------------------------------------
and my nginx reverse proxy config is :
server {
listen 80;
server_name _;
return 301 https://server.local;
}
server {
listen 443 ssl;
server_name _;
disable_symlinks off;
ssl_session_cache shared:SSL:50m;
ssl on;
ssl_certificate /home/pathtossl.pem;
ssl_certificate_key /home/pathtossl.pem;
location /jira/ {
proxy_pass http://serverip:port/jira/;
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 Authorization "";
client_max_body_size 0;
}
location /confluence/ {
proxy_pass http://serverip:port/confluence/;
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 Authorization "";
}
how i fix this issue??
Spend the day sharpening your skills in Atlassian Cloud Organization Admin or Jira Administration, then take the exam onsite. Already ready? Take one - or more - of 12 different certification exams while you’re in Anaheim at Team' 25.
Learn more