Reputation: 125
I'm very new for using tomcat apache 7.0.
I have installed tomcat as located in : C:/Program Files/Apache Software Foundation/Tomcat 7.0
And this is my web application located: D:/Document/clientproject/src/main/webapp
I have changed the server.xml of tomcat as following:
<Host name="www.tmpclientapp.com" appBase="???" unpackWARs="true" autoDeploy="true">
<Context docBase="???" path="" reloadable="true" source="???"/>
</Host>
I don't know what I should change in appBase and docBase and also source.
Please help me.
Upvotes: 1
Views: 3883
Reputation: 768
why you want to change appBase and docbase any specific reason ?
default appBase is webapps folder. and docBase is you application folder.
if you want to deploy your application on / create a war with name ROOT
Upvotes: 0