I'm trying to set up several virtual hosts that are based off of names in
tomcat 5.0.28.
I'm using something like:
<Host name="www.someUrl.com" debug="0" appBase="someUrlwebapps" unpackWARs="true"><Alias>someUrl.com</Alias></Host>
Then I set up a directory similiar to webapps called someUrlwebapps and put it in the same directory as webapps.
When I direct a browser to
www.someUrl.com I just get a blank screen (even though I have a ROOT directory under someUrlwebapps with pages in it).
I've tried moving the appbase to "webapps/someUrl" and setting that directory up like a normal webapp dir and I get the same problem.
Any idea what the problem is? It seems to know that it should be serving pages from a different directory... just its not either finding that directory... or something. Any help would be greatly appreciated.
-Tad