Apache 2.0 tomcat 5 virtual hosting issue

Hi,
I am running Apache 2 and tomcat 5.
I am using mod_jk2 to deploy jsp
I am trying to set up virtual hosting.
I have added the following to httpd.conf
<VirtualHost *:*>
DocumentRoot /usr/local/tomcat/webapps/lionsandtigers
ServerName mywebadress
<Directory "/usr/local/tomcat/webapps/lionsandtigers">
Options Indexes
</Directory>

</VirtualHost>

where mywebadress is the domain name

However when i try to view the jsp it just give me the well done you have successfully installed tomcat message.

I can then view the pages by using the webapp address e.g.
mywebadress/lionsandtigers/index.jsp

But not on its own e.g.
mywebadress/index.jsp

Do i have to add anything to server.xml or anything like that. I can find no help any where so any ideas would be great

 

 

 

 

Top