Apache VirtualHost Proxyforward example
Posted on: 7 February 2015 /
Categories:
The following article shows on how to use Proxyforward in virtualhosts in apache
# Proxyforward to
<VirtualHost *:80>
ServerName www.YOURWEBSITE.com
#ProxyRequests On
#ProxyVia On
<Location />
#allow from
#allow from
#deny from from all
</Location>
ProxyPass / http://IPADRESS/Games&Software/
ProxyPassReverse / http://IPADRESS/Games&Software/
ProxyPreserveHost On
</VirtualHost>