Jira seems to ignore Base Url

Alberto Cecchi September 13, 2016

Hello,

My JIRA software is installed on a host with a custom port http://JIRASERVER:8095 that is targeted by a reverse proxy configured as http://jira.myserver.com.

In the server option I set the base url to http://jira.myserver.com but JIRA keep sending attachments and images url as http://JIRASERVER:8095.

I installed the lastest JIRA version.

What can I try to do to solve the problem ?

 

Sincerely,

Alberto

2 answers

0 votes
Alberto Cecchi September 13, 2016

SWorry but I don't have any "General Configuration" but "System".

I own JIRA software and not Confluence.

Anyway I already set the Base Url to the public one (http://jira.myserver.com) but it seems to ignore it and keep using the private one (http://JIRASERVER:8095)

 

noamdah
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.
September 13, 2016

Check out this link.

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.
September 13, 2016

If you don't have "general configuration", how are you setting the base url?

0 votes
noamdah
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.
September 13, 2016

Make sure you configure the JIRA application base url to the relevant address:

Go to Admin->System->General Configuration

Click Edit Settings

Change Base URL

As you also wish to change the port from 8095 to 80 change server.xml:

 

<Service name="Catalina">
        <Connector port="8095"

                   maxThreads="150"
                   minSpareThreads="25"
                   connectionTimeout="20000"

                   enableLookups="false"
                   maxHttpHeaderSize="8192"
                   protocol="HTTP/1.1"
                   useBodyEncodingForURI="true"
                   redirectPort="8443"
                   acceptCount="100"
                   disableUploadTimeout="true"
                   proxyName="jira.myserver.com"
                   proxyPort="80"
                   scheme="http"/>

Suggest an answer

Log in or Sign up to answer