DevilWAH wrote: » Is it possible to split virtual hosts in apache across the two physical servers?
NightShade03 wrote: » I mis-understood what you were looking for. I'm pretty sure you could accomplish what you are looking for with just Apache alone. You will need to setup the config file to use the mod_proxy module. Here is the ref page:mod_proxy - Apache HTTP Server Specifically you want to use the ProxyPass directive which will allow you to pass the request from the server to another server. I haven't done the setup you are asking for before but I can't image that it is that hard. Just curious...but why host SiteA on one server and SiteB on another?
<VirtualHost *:80> ServerAdmin john@doe.com ServerName <my domain>.com ServerAlias www.<my domain>.com ProxyPass / http://localhost:8080/<web-app context root>/ ProxyPassReverse / http://localhost:8080/<web-app context root>/ ErrorLog logs/<my domain>.com-error_log CustomLog logs/<my domain>.com-access_log combined </VirtualHost>
DevilWAH wrote: » Because I might have a few web-servers/sites soon, I might even design a solution with one server that is purely a web proxy for multiply back end sites.
Forsaken_GA wrote: » Make sure you build some redundancy into this if so, single points of failure are bad.