Colm MacCarthaigh wrote:

On Tue, Jul 20, 2004 at 05:20:53PM +0200, Graham Leggett wrote:

The "httpd serves the static content" feature can be implemented through extending ProxyPass to support regular expressions, for example:

ProxyPass /myWebapp/*.jsp http://tomcat/myWebapp/



RewriteCond %{REQUEST_URI} ^/(.*)\.jsp$ RewriteRule (.*) http://127.0.0.1:8080$1 [P,L]

RewriteCond %{REQUEST_URI}                      ^/(.*)/servlet/(.*)$
RewriteRule (.*)        http://127.0.0.1:8080$1 [P,L]

.. is what I have, no need for new features :)

Well I didn't see where is load-balancing and fault-tolerance here ?)

That's one of the major feature of jk/jk2 and why many companies
used jk as frontal to Tomcat cluster farms.

Reply via email to