Reverse Proxy for a Subdomain

The below Apache reverse proxy configuration lets another website be served through a domain. The example is a little contrived.

   1 <VirtualHost 72.36.165.250:80>
   2   ServerName proxied-site.samat.org
   3 
   4   ProxyPass / http://google.com/
   5   ProxyPassReverse / http://google.com/
   6 </VirtualHost>


CategoryCheatSheet