I have apache with one folder used for reverse proxy:

<VirtualHost *:80>
 ...
 ProxyPass /site http://server.local:8989/site
 ProxyPassReverse /site http://server.local:8989/site
</VirtualHost *:80>

How can I disable proxy for url's /site/IMAGES/* ?

link|improve this question

67% accept rate
feedback

1 Answer

up vote 2 down vote accepted

Add before the first ProxyPass:

ProxyPass /site/IMAGES/ !

See the mod_proxy docs for the full details.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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