Apache

Fahad Siddiqui
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 12, 2019

Can someone provide with steps how to Stop Apache from proxying to Jira applications,

1 answer

1 accepted

0 votes
Answer accepted
DPKJ
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 12, 2019

@Fahad Siddiqui 

Three steps,

1. Remove proxy directives from conf file in Apache,

You will find lines some like,

ProxyPass / http://<JIRA_LOCAL_URL>:8080/      
ProxyPassReverse / http://<JIRA_LOCAL_URL>:8080/

2. Remove proxy directives from <JIRA_INSTALLATION>/conf/server.xml file

You will find this `Connector` section in this xml file, something like

<Connector port="8080" connectionTimeout="20000" maxThreads="200" minSpareThreads="10"
    enableLookups="false" acceptCount="10" URIEncoding="UTF-8" 
    proxyName="<BASE_URL>" proxyPort="443" scheme="https" secure="true" />

remove the `proxyName="<BASE_URL>" proxyPort="443" scheme="https" secure="true"` part.

 

3. Restart Apache and and Jira, and reset base url from Jira settings page.

Fahad Siddiqui
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 12, 2019

Thank you and I believe you can be JIRA consultant....

Suggest an answer

Log in or Sign up to answer