thanks for answers, JkUnMount forward to my apache2, and mod_rewrite does its job then.
Thanks to the list !

----------------------------------------------------
Christophe Dumonet
Centre de Ressources Informatiques
Institut Francais de Mecanique Avancee (IFMA)
Campus des Cezeaux
BP 265
63175 AUBIERE Cedex
Tel : +33 - 4.73.28.80.64
Fax : +33 - 4.73.28.81.00
Mail : christophe.dumo...@ifma.fr
----------------------------------------------------



Rainer Jung a écrit :
On 05.05.2009 16:13, André Warnier wrote:
christophe.dumo...@ifma.fr wrote:
...
Suggestion :
instead of using the JkMount/JkUnMount way of configuring your forwarded
URLs, use the way described here :
http://tomcat.apache.org/connectors-doc/reference/apache.html
in the section : Using SetHandler and Environment Variables

In other words, instead of
  JkMount /myapp worker1
  JkMount /myapp/* worker1
  (JkUnMount /myapp/*.gif worker1)
use

<Location /myapp>
  SetHandler jakarta-servlet
  (SetEnvIf REQUEST_URI ^/myapp/.+\.gif no-jk)
  ...
</Location>

If you want to use this recipe, be sure to use version 1.2.28 of mod_jk.
Version 1.2.27 had a problem with this type of confguration, when no
JkMount was used at all. Versions before 1.2.27 have a known security
related issue, so 1.2.28 is best.

Regards,

Rainer

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org





---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to