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??
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.