Tomcat 4.1.24 context problem?

2003-04-02 Thread Don Sauer
Okay, This is driving me nuts. I have APACHE 2 + Tomcat 4.1.24 + mod_jk configured. In my VirtualHost I set it so that /* =ajp13 /examples/* ajp13 and /hms/* ajp13. My Context is below, when I test my configuration the http:///www.xyz.com/ comes up to Tomcats default page eventhough it isn't

Re: Tomcat 4.1.24 context problem?

2003-04-02 Thread Jacob Kjome
The docBase is relative to the Host appBase unless you specifically provide an absolute path off the root of the system. I assume that your contexts are within the appBase, right? So then it should be... Context docBase=[you need a subdirectory here] ... Context docBase=examples Look