Eric Berry wrote: > Here's the jist of what I have: > <Host name="www.host1.com" appBase="/opt/projects/www/host1/web"> > <Context path="" docBase="/opt/projects/www/host1/web" /> > </Host>
This will fail in later versions of Tomcat 5. appBase should not equal docbase. The correct configuration is: <Host name="www.host1.com" appBase="/opt/projects/www/host1/web"> <Context docBase="/ROOT" /> </Host> Mark --------------------------------------------------------------------- To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]