I have ActiveMQ and Accumulo running which each have their own web console. I'd like to put apache httpd in front of them. I setup mod_proxy and added the following to /etc/httpd/conf.d/proxy.conf
ProxyPass /activemq http://1.2.3.4:8161
ProxyPassReverse /activemq http://1.2.3.4:8161
ProxyPass /accumulo http://5.6.7.8:50095
ProxyPassReverse /accumulo http://5.6.7.8:50095
The problem is the AMQ and Accumulo sites don't work/look as they should because their HTML tries to load images, css, js using urls such as <img src="/images/logo.jpg">
How can I fix things to the js/css, etc load properly?