vote up 1 vote down star

As a result of horrible, horrible errors, we've changed how we connect Apache to Tomcat. We were using mod_jk:

JkMount /path ajp13

Now we're using mod_proxy_ajp:

ProxyPass /path ajp://localhost:8009/path
ProxyPassReverse /path ajp://localhost:8009/path

However, there's a feature that JkMount offered but ProxyPass doesn't: the ability to select on file types. This made it possible to proxy html files, but not images - in other words, to let the nice fast Apache serve the static stuff, and resorting to the slow Tomcat only for the dynamic stuff.

JkMount /*.html ajp13

Is there any way of achieving this with ProxyPass? Possibly using a surrounding <Location> directive or something like that?

flag

71% accept rate

3 Answers

vote up 2 vote down check

Use ProxyPathMatch:

ProxyPathMatch ^/(path/.*\.html)$ ajp://localhost:8009/$1

Edited: Marcus Downing’s correction

link|flag
Are there performance implications of using a regular expression? – Marcus Downing Feb 20 at 23:08
Regular expression have some performance issues when you have overcomplex expressions. For this kind of regular expression it’s ok. – kmkaplan Feb 23 at 7:44
vote up 1 vote down

Not your issue but something to watch out for using this configuration. While using apache mod_proxy to connect to tomcat my error log was showing dropped connections under moderate load. Adding this to httpd.conf solved my problems.

SetEnv force-proxy-request-1.0 1
SetEnv proxy-nokeepalive 1
link|flag
Can you explain what these do? – Marcus Downing Feb 20 at 23:28
turns off keep alive connections and makes the request use http 1.0 instead of 1.1 – jlintz Feb 23 at 4:17
Correct. I believe the original errors messages where a symptom of a different problem but I was receiving them on both internal and 3rd party apps on the same tomcat instance. Anyhow this these changes cleared up the error log. – jms Feb 23 at 14:31
vote up 1 vote down

kmkaplan's post is the right answer, but it gave me the error:

Syntax error on line 32 of .../httpd-vhosts.conf:
ProxyPass Unable to parse URL

It worked when I changed the directive to read:

ProxyPathMatch ^/(path/.*\.html)$ ajp://localhost:8009/$1

I can only assume that putting the $1 right next to the port number 8009 was confusing it.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.