I have setup a reverse proxy on my workplace LAN so several sites can be accessed from outside our LAN. I have included the mod-proxy-HTML, so it handles the rewriting of URLs in the returned HTML.
However Firefox and Chromium complains about an encoding problem.
If I edit the network.http.accept-encoding option of Firefox and remove the default gzip;deflate; then the site looks ok.
LoadModule deflate_module modules/mod_deflate.soin my httpd.conf file in order to make this work for me. – braveterry Mar 04 '13 at 01:55SetOutputFilter INFLATE;DEFLATE- as per http://www.apachetutor.org/admin/reverseproxies "note that ProxyHTMLEnable correctly inserts the proxy-html filter between INFLATE and DEFLATE" – JosephH Aug 14 '20 at 17:52