Hi,
i have a domain called mysite.com
i have the web application and place the all the
jsp files in
C:\Program Files\Apache Software Foundation\Tomcat 6.0\webapps\mysite
Now i run my jsp files as
http://11.22.33.44:8080/mysite/index.jsp When i run like this it worked fine.Now i have to create the virtual hosting with
tomcat to my application.
like
http://www.mysite.com/index.jsp For that i changed the server.xml in conf/server.xml
server.xml
<Host name="www.mysite.com" appBase="webapps/mysite"
unpackWARs="true" autoDeploy="true"
xmlValidation="false" xmlNamespaceAware="false">
And also changed the conf/catelina/mysite/ROOT.xml
<Context displayName="sayhi" docBase="" path=""
workDir="work/Catalina/sayhi/_">
</Context>
i changed like that but it didn't work.Please suggest can i made any other changes.