I have a dev enviornment running Tomcat7 on a FreeBSD server. I want to make sure no apps auto deploy so I've used the following in my server.xml
<Host name="localhost" appBase="webapps"
unpackWARs="true" autoDeploy="true" deployOnStartup="false">
The problem is I still need to have manager and host-manager to auto start. Is there a way to keep all apps except these from auto deploying?