We have tomcat 5.5.25. There are around 10 war files deployed in this tomcat.
All the war files are in a separate directory, and we have xml files for each app in conf/catalina/localhost folder.
For example take app.war application
app.war
file is present in a /tomcat/apps directory.
app.xml
file present in conf/catalina/localhost folder.
and exploded directory is present in webapps folder.
app.xml
file looks like this
<Context path="/app"docBase="/tomcat/apps/app.war">
</Context>
and this application is accessible using url
http://mytomcat:8080/app
Now My requirement is to access the application directly using the url
http://mytomcat:8080/
To achieve this what configurations do I need to change? please help