> Can I have one cgi-bin directory, or does there
> have to be one in each webapp?

By design, webapps are intended to be independent, so error handling is
also independent.  Don't have any personal experience here, but possibly
you could use a copy of the same error page in each webapp that does a
redirect to the error handling page in httpd.  You might want to search
the archives for other options:
http://marc.theaimsgroup.com/?l=tomcat-user&r=1&w=2

 - Chuck


Thanks, I had searched them quite extensively before but with no luck. Having said that I've just figured one way round this, but using mod_proxy instead of mod_jk.

ErrorDocument 404 /cgi-bin/error.cgi
ProxyRequests Off
ProxyErrorOverride On
<Location /examples/>
 ProxyPass http://localhost:8080/examples/
 ProxyPassReverse http://localhost:8080/examples/
</Location>

If anyone could tell me how to do this with mod_jk, I'd really appreciate it.

Cheers,

Ed.



---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to