How to configure jira to work properly behing a proxy (nginx) with both HTTP and HTTPS ?

Sorin Sbarnea (Citrix)
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.
December 17, 2012

Jira works just fine behind nginx as far as you do not want to make it available on BOTH HTTPS and HTTP.

In nginx:

location / {
        proxy_pass   http://127.0.0.1:8080; # and 8081 in the SSL version of the same config
        proxy_read_timeout      10800s;
        proxy_set_header        Host            $http_host;
        proxy_set_header        X-Real-IP       $remote_addr;
        proxy_set_header        X-Forwarded-For $proxy_add_x_forwarded_for;
}

In server.xml

<Connector port="8080"
...
scheme="http" proxyName="jira.example.com" proxyPort="80"
/>

<Connector port="8081"
...
scheme="https" proxyName="jira.example.com" proxyPort="443"
/>

The remaining problem is that Jira complains about not running from the correct address based on what you configure as a base_url, you can configure either http://jira.example.com or https://jira.example.com but not both so on one of them it will complain.

If I'm not wrong HTTP specification says that you could use //example.com to allow the browser to choose between https or http, still the UI does not allow you to enter this.

If there any way to trick jira into working fine under both?

1 answer

1 accepted

2 votes
Answer accepted
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
December 17, 2012

No. The base url has to be a single url because Jira uses it for publishing information. If you had more than one url, which one do you use on emails or gadgets?

The simple thing to do is redirect http to https automatically.

Suggest an answer

Log in or Sign up to answer