lucee / lucee-dockerfiles

Official Lucee Dockerfiles for Docker Hub build images
https://hub.docker.com/u/lucee/
MIT License
86 stars 50 forks source link

Review JAR scanning settings for each version of Tomcat #8

Closed modius closed 9 years ago

modius commented 9 years ago

We have some standard JAR scanning settings (namely to skip most scanning). Need to review these in the context of both Tomcat 7 (4.5) and 8 (5.0) images. Suspect we should simply block all scanning as Lucee potentially has its own scan -- need to check and confirm.

Note, this is an effort to improve Tomcat servlet startup times.

modius commented 9 years ago

Have added the following to default host:

<!-- block jar scanner for faster start time -->
<Context path="" docBase="/var/www/">
  <JarScanner scanClassPath="false"/>
</Context>