Forum Accounts wrote:
> I'm looking for a way to allow us to rename our .do struts extensions to
> something else, without having to do them all at once. Tomcat 7.0.6,
> jdk1.6, solaris 10, behind Apache 2.2.10, struts 1.1. Multiple struts action
> servlet mappings (*.do and *.foo) seems to do what we want when going
> through the tomcat port, but when going through apache, we get a 404 on
> .foos Any ideas appreciated. Thanks in advance.
>
You say Tomcat "behind Apache", but you do not say what you use to connect them.
mod_jk ?
From your sketchy description, it looks like you may just have forgotten to proxy *.foo
URLs to Tomcat, and Apache is trying to serve them locally (and not finding them).
If your Apache configuration includes statements like
JkMount /*.do workerx
add a
JkMount /*.foo workerx
and restart Apache.
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org
For additional commands, e-mail: users-help@tomcat.apache.org
|