There's a problem with the 2 VirtualHost entries I had to add for SSL. Now every request to httpd is being handled by these VirtualHosts, even requests for with hostnames that don't match them.
Here's my current config: <VirtualHost *> ServerName blah.mysite.com ... <VirtualHost foo.mysite.com:80> ServerName foo.mysite.com ... <VirtuaHost foo.mysite.com:443> ServerName foo.mysite.com ... SSL stuff <VirtualHost *> ServerName bar.othersite.com ... Since added the 2 for foo.mysite.com, EVERY request is handled by foo.mysite.com, even those for blah.mysite.com and bar.mysite.com. Even after changing the first one to <VirtualHost blah.mysite.com:80>, httpd would still try to use foo.mysite.com for http://blah.mysite.com/test.html! !! Any ideas? httpd 2.2