Hi. I'm working on a site currently on my local PC using Tomcat 5.5. I thought that I set it up right, but apparently I have a little problem.
Suppose my directory structure is:
C:\Tools\Tomcat 5.5\webapps\mySite
I would expect that the root directory for the web application "mySite" to be "C:\Tools\Tomcat 5.5\webapps\mySite". However, it is: "C:\Tools\Tomcat 5.5\webapps".
Since I obviously don't want to put things like my CSS file in webapps, I have a problem.
My server.xml contains the following:
What am I doing wrong?
Thanks,
Tom
Suppose my directory structure is:
C:\Tools\Tomcat 5.5\webapps\mySite
I would expect that the root directory for the web application "mySite" to be "C:\Tools\Tomcat 5.5\webapps\mySite". However, it is: "C:\Tools\Tomcat 5.5\webapps".
Since I obviously don't want to put things like my CSS file in webapps, I have a problem.
My server.xml contains the following:
Code:
...
<Host name="localhost" appBase="webapps"
unpackWARs="true" autoDeploy="true"
xmlValidation="false" xmlNamespaceAware="false">
...
<Context path="/mySite" docBase="/mySite" debug="0" reloadable="true" />
</Host>
...
What am I doing wrong?
Thanks,
Tom