Nick Stoianov wrote:
> Where does Tomcat gathers the information to create mod_jk.conf-auto?
server.xml and the structure of your webapps directory - basically what
contexts are created.
You dont have to use the autogenerated file. Take a copy of it, change
it as you like, and have your httpd.conf include point to the copy
you've modified. Mind you that if you do this you then bear the
responsibility of ensuring the config is valid - apachectl configtest is
very nice here (o:
cheers
dim
>
> There is a line in mod_jk.conf-auto saying :
> JkMount /examples/servlet/* ajp12
>
> I tried changing web.xml , server.xml, etc. -> it always generates :
> JkMount /examples/servlet/* ajp12
>
> and I want to change it to:
> JkMount /examples/servlets/* ajp12
>
> The problem is that I already have servlets calling different servlets and
> classes from /servlets (not from /servlet )
>
> Please advice
>
> Nick