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.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.