Just to get this out of the way... did you restart Tomcat after you
updated the server.xml file? Right now, that still has to be done.
Also, just for clarification, what directory is your site hosted in on
the server?
Here's a server.xml method that I know works:
<Host name="www.openbluedragon.org" appBase="webapps"
unpackWARs="true" autoDeploy="true"
xmlValidation="false" xmlNamespaceAware="false">
<Context path="" docBase="/home/openbd/public_html/" />
</Host>
and to make the site work if someone forgets the www:
<Host name="www.openbluedragon.org" appBase="webapps"
unpackWARs="true" autoDeploy="true"
xmlValidation="false" xmlNamespaceAware="false">
<Context path="" docBase="/home/openbluedragon/public_html/" />
<Alias>openbluedragon.org</Alias>
</Host>
Hope this helps!
Warm regards,
Jordan Michaels
Vivio Technologies
http://www.viviotech.net/
Open BlueDragon Steering Committee
Adobe Solution Provider
Dan Vega wrote:
> I have tomcat + openbd running on my vps and when I go to localhost/
> mydomain I get the openbd test page. I have a domain setup on that
> machine that was working in apache just fine but I want to set it up
> in tomcat. I added a new host entry to my conf/server.xml file
>
> <Host name="mydomain" appBase="webapps/mydomain"
> unpackWARs="true" autoDeploy="true"
> xmlValidation="false" xmlNamespaceAware="false">
> </Host>
>
> When I go to my url from another machine I just get a blank page, what
> am I doing wrong?
>
> >
>
--~--~---------~--~----~------------~-------~--~----~
Open BlueDragon Public Mailing List
http://groups.google.com/group/openbd?hl=en
official site @ http://www.openbluedragon.org/
!! save a network - trim replies before posting !!
-~----------~----~----~----~------~----~------~--~---