Install the following package on Ubuntu:
sudo apt-get install libapache2-mod-proxy-htmlIn the /etc/apache2/mods-enabled, add the following symbolic links:
$ sudo ln -s ../mods-available/proxy.conf proxy.confIn the /etc/apache2/mods-available, edit the mod_proxy:
$ sudo ln -s ../mods-available/proxy_http.load proxy_http.load
$ sudo ln -s ../mods-available/proxy.load proxy.load
- Uncomment the <Proxy *>
and the </Proxy> tags and add "Allow from all" within the tags
<VirtualHost *:80>
Servername guest.company.com
ProxyPass / http://quest.company.com:8080/
ProxyPassReverse / http://guest.company.com:8080/
</VirtualHost>