Sean Carolan wrote:
I guess what I'm not clear on is how you replace mod_jserv's configuration:
ApJServMount /servlets ajpv12://host.domain.com:8008/root
with the equivalent version using JkMount.
On the old server running mod_jserv our configuration looks like this:
<IfModule mod_jserv.c> ApJServMount /servlets ajpv12://hostname.web.domain.com:8008/root ApjServAction .html /servlets/gnujsp </IfModule>
How do we duplicate this line with mod_jk?
ApjServAction .html /servlets/gnujsp
What does ApjServAction do ?
Might it be
JkMount /*.html ajp12
assuming ajp12 is the name of your worker in worker.properties
nate