setting JkMount

2003-07-17 Thread Werner van Mook
I have apache connected to tomcat through mod_jk. httpd.conf : In my tag I put a : JkMount xxx ajp13 server.xml : ... ... What's the problem : I have a site called www.connecties.com. This contains (until now) only static pages. I'm creating a testsite called

Re: setting JkMount

2003-07-17 Thread John Turner
ServerName www.connecties.com JkMount /Friss/*.jsp ajp13 JkMount /Friss/servlet/* ajp13 Delete/disable the WARP connector in server.xml, you don't need it. Also, you're probably better off using the default CoyoteConnector on port 8009 for JK instead of Ajp13Connector. John On Thu, 17

Setting JkMount for root context servlets, jsps

2002-07-23 Thread Chris Ruegger
If I have a web app under Tomcat set as the root context, how should I set up my JkMount specs in mod_jk.conf such that calls to anything ending in .jsp or starting with /servlet are sent to tomcat? All of the examples I've seen so far redirect calls to Tomcat just based on the context name, e.