JIRA HTML-resources are not loaded with Proxy

Jerome Anker April 6, 2017

I followed the directions on this page: https://confluence.atlassian.com/kb/proxying-atlassian-server-applications-with-apache-http-server-mod_proxy_http-806032611.html

 

The original URL with IP:PORT is still working fine, but the HTML-resources are not loaded in my Proxy-URL (eg. jira.domain.com). When I access these HTML-resources directly, I do see the contents of these files.

The problem might be the relative URLs inside the HTML-source:

<link type="text/css" rel="stylesheet" href="/s/{...}/batch.css" media="all">

 

My Apache2-conf is as follows:

<VirtualHost *:80>
    ServerName jira.company.com

    ProxyRequests Off
    ProxyVia Off

    <Proxy *>
         Require all granted
    </Proxy>

    ProxyPass           / http://localhost:8100/
    ProxyPassReverse    / http://localhost:8100/
</VirtualHost>

I am using port 8100 because the default port was already in use.

1 answer

0 votes
Dave Theodore [Coyote Creek Consulting]
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
April 11, 2017

Did you make the changes to the server.xml described in step 3 and bounce JIRA? That's a really important step. Skip step 2 in your case.

Suggest an answer

Log in or Sign up to answer