The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

How to use a proxy while making a REST call from Jira server plugin

Aniket Thakur
January 12, 2018

We are using a Jira server plugin and making a REST call from it using Apache HTTP client. However this client does not seem to respect the proxy set at Jira level.

 

What can we do so that the proxy at Jira level is respected? Is there a Jira REST client that we can use that can obey Jira level proxy? 

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Andy Heinzer
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 Champions.
January 24, 2018

Two things come to mind:

1) How is the plugin making calls to the Jira site? (ie what address is the plugin using to make this REST API call?)  Is it the Base URL of the site?   I would expect this to be set to use the base URL that Jira is configured to use.

AND

2) How is Jira configured in regards to the $JIRAINSTALL/conf/server.xml file?   This file controls how Jira's Tomcat web server is hosting the site and serving up this Jira content.  If you're using a reverse proxy in front of Jira, then you should have a connector in that file that uses the proxyPort, proxyName, and scheme parameters.  If you don't use those parameters for the proxy connector, then Jira does not properly know that its traffic is being routed through this proxy.  For situations like this, it's really important that this be configured when using a reverse proxy with Jira.  Otherwise you get some unexpected behaviors where things don't work correctly like REST calls.

 

Provided that your plugin is using the Base URL Jira is set to AND that Jira is setup to correctly use those parameters in the server.xml config for that connector, I would expect the plugin to be able to reach the site, even when using a reverse proxy.