Apache – How to disable gzip content encoding (eg DEFLATE) for one set of URLs

apache-2.2deflategzipmod-deflate

I have a ubuntu apache webserver and I have enabled mod_deflate to gzip all the content. However there's one folder I'd like to disable the mod_deflate for. I was going to do something like this:

<Location /myfolder>
   RemoveOutputFilter DEFLATE
</Location>

But that doesn't work.


Rational: I am trying to debug an XMLRPC server and I am using wireshark to see what gets past in the HTTP requests, since the replies are gzipped, I can't see what's going on.

Best Answer

I believe that RemoveOutputFilter expects a file extension, not a filter type. It should be something like:

<Location /myfolder>
      RemoveOutputFilter html 
</Location>

or whatever file extension you're using in that directory.