<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Mod_deflate on Notes</title>
    <link>https://www.simplicidade.org/tags/mod_deflate/index.xml</link>
    <description>Recent content in Mod_deflate on Notes</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>en-us</language>
    <managingEditor>melo@simplicidade.org (Pedro Melo)</managingEditor>
    <webMaster>melo@simplicidade.org (Pedro Melo)</webMaster>
    <copyright>(c) 2016 Pedro Melo.</copyright>
    <atom:link href="/tags/mod_deflate/index.xml" rel="self" type="application/rss+xml" />
    <atom:link rel="hub" href="https://pubsuhhubbub.superfeedr.com/"/>
    
    <item>
      <title>Simplicidade is now mod_deflated</title>
      <link>https://www.simplicidade.org/notes/2004/08/29/simplicidade-is-now-mod_deflated/</link>
      <pubDate>Sun, 29 Aug 2004 12:34:33 +0000</pubDate>
      <author>melo@simplicidade.org (Pedro Melo)</author>
      <guid>https://www.simplicidade.org/notes/2004/08/29/simplicidade-is-now-mod_deflated/</guid>
      <description>&lt;p&gt;I just turned on mod_defalte on this site. If you notice any problems, just drop me a comment.&lt;/p&gt;

&lt;p&gt;The setup I&amp;rsquo;m using right now is this:&lt;/p&gt;

&lt;pre&gt;
# Insert filter
SetOutputFilter DEFLATE
# Netscape 4.x has some problems...
BrowserMatch ^Mozilla/4 gzip-only-text/html
# Netscape 4.06-4.08 have some more problems
BrowserMatch ^Mozilla/4\.0[678] no-gzip
# MSIE masquerades as Netscape, but it is fine
# BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
# NOTE: Due to a bug in mod_setenvif up to Apache 2.0.48
# the above regex won&#39;t work. You can use the following
# workaround to get the desired effect:
BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html
# Don&#39;t compress images
SetEnvIfNoCase Request_URI .(?:gif|jpe?g|png|zip)$ no-gzip dont-vary
# Make sure proxies don&#39;t deliver the wrong content
Header append Vary User-Agent env=!dont-vary
&lt;/pre&gt;

&lt;p&gt;Got it from &lt;a href=&#34;http://richardathome.no-ip.com/index.php?article_id=58&#34;&gt;this site&lt;/a&gt;. I dropped the Location stuff he was using and put the directives above in the global config.&lt;/p&gt;
</description>
    </item>
    
  </channel>
</rss>