Using ProxyPass for pages but not images - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T11:05:54Zhttp://stackoverflow.com/feeds/question/569861http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/569861/using-proxypass-for-pages-but-not-images1Using ProxyPass for pages but not imagesMarcus Downing2009-02-20T15:03:55Z2009-02-23T07:43:01Z
<p>As a result of <a href="http://stackoverflow.com/questions/246540/apache-tomcat-error-wrong-pages-being-delivered">horrible, horrible errors</a>, we've changed how we connect Apache to Tomcat. We were using <code>mod_jk</code>:</p>
<pre><code>JkMount /path ajp13
</code></pre>
<p>Now we're using <code>mod_proxy_ajp</code>:</p>
<pre><code>ProxyPass /path ajp://localhost:8009/path
ProxyPassReverse /path ajp://localhost:8009/path
</code></pre>
<p>However, there's a feature that <code>JkMount</code> offered but <code>ProxyPass</code> 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.</p>
<pre><code>JkMount /*.html ajp13
</code></pre>
<p>Is there any way of achieving this with <code>ProxyPass</code>? Possibly using a surrounding <code><Location></code> directive or something like that?</p>
http://stackoverflow.com/questions/569861/using-proxypass-for-pages-but-not-images/569982#5699822Answer by kmkaplan for Using ProxyPass for pages but not imageskmkaplan2009-02-20T15:29:52Z2009-02-23T07:43:01Z<p>Use <a href="http://httpd.apache.org/docs/2.2/mod/mod_proxy.html#proxypassmatch" rel="nofollow">ProxyPathMatch</a>:</p>
<pre><code>ProxyPathMatch ^/(path/.*\.html)$ ajp://localhost:8009/$1
</code></pre>
<p><sub>Edited: Marcus Downing’s correction</sub></p>
http://stackoverflow.com/questions/569861/using-proxypass-for-pages-but-not-images/570026#5700261Answer by jms for Using ProxyPass for pages but not imagesjms2009-02-20T15:38:13Z2009-02-20T15:38:13Z<p>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.</p>
<pre><code>SetEnv force-proxy-request-1.0 1
SetEnv proxy-nokeepalive 1
</code></pre>
http://stackoverflow.com/questions/569861/using-proxypass-for-pages-but-not-images/571605#5716051Answer by Marcus Downing for Using ProxyPass for pages but not imagesMarcus Downing2009-02-20T23:08:12Z2009-02-21T00:09:34Z<p>kmkaplan's post is the right answer, but it gave me the error:</p>
<pre><code>Syntax error on line 32 of .../httpd-vhosts.conf:
ProxyPass Unable to parse URL
</code></pre>
<p>It worked when I changed the directive to read:</p>
<pre><code>ProxyPathMatch ^/(path/.*\.html)$ ajp://localhost:8009/$1
</code></pre>
<p>I can only assume that putting the <code>$1</code> right next to the port number <code>8009</code> was confusing it.</p>