<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>
<channel>
	<title>Comments on: mod_deflate gzip compression http/1.1 vs. 1.0</title>
	<atom:link href="http://installingcats.com/2007/12/12/mod_deflate-gzip-compression-http11-vs-10/feed/" rel="self" type="application/rss+xml" />
	<link>http://installingcats.com/2007/12/12/mod_deflate-gzip-compression-http11-vs-10/</link>
	<description>Fixes for Apple AirPort, QuickTime AVI, and other Leopard Issues</description>
	<pubDate>Sat, 21 Nov 2009 03:09:05 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Mikhailov Anatoly</title>
		<link>http://installingcats.com/2007/12/12/mod_deflate-gzip-compression-http11-vs-10/comment-page-1/#comment-433</link>
		<dc:creator>Mikhailov Anatoly</dc:creator>
		<pubDate>Wed, 17 Dec 2008 04:16:27 +0000</pubDate>
		<guid isPermaLink="false">http://installingcats.com/2007/12/12/mod_deflate-gzip-compression-http11-vs-10/#comment-433</guid>
		<description>Mod_deflate in apache2 is pretty much the same as mod_gzip in apache1.3, and mod_deflate is included with the apache2 source package. Both modules allow compressing of the apache server on the fly

http://railsgeek.com/2008/12/16/apache2-httpd-improving-performance-mod_deflate-gzip</description>
		<content:encoded><![CDATA[<p>Mod_deflate in apache2 is pretty much the same as mod_gzip in apache1.3, and mod_deflate is included with the apache2 source package. Both modules allow compressing of the apache server on the fly</p>
<p><a href="http://railsgeek.com/2008/12/16/apache2-httpd-improving-performance-mod_deflate-gzip" rel="nofollow" onclick="javascript:urchinTracker ('/outbound/comment/railsgeek.com');">http://railsgeek.com/2008/12/16/apache2-httpd-improving-performance-mod_deflate-gzip</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim Novinger</title>
		<link>http://installingcats.com/2007/12/12/mod_deflate-gzip-compression-http11-vs-10/comment-page-1/#comment-431</link>
		<dc:creator>Tim Novinger</dc:creator>
		<pubDate>Tue, 16 Dec 2008 15:08:43 +0000</pubDate>
		<guid isPermaLink="false">http://installingcats.com/2007/12/12/mod_deflate-gzip-compression-http11-vs-10/#comment-431</guid>
		<description>THANK YOU!

I've been trying all morning to try and get mod_gzip working on 10.5.6 Leopard Server with no luck. However once I found your post and tossed the following code into my vhosts file (located in /private/etc/apache2/sites/virtual_host_global.conf) it finally worked.

AddOutputFilterByType DEFLATE text/html text/plain text/css
AddOutputFilterByType DEFLATE text/javascript application/x-javascript
BrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4.0[678] no-gzip
BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
DeflateFilterNote Input input_info
DeflateFilterNote Output output_info
DeflateFilterNote Ratio ratio_info

// Tim</description>
		<content:encoded><![CDATA[<p>THANK YOU!</p>
<p>I&#8217;ve been trying all morning to try and get mod_gzip working on 10.5.6 Leopard Server with no luck. However once I found your post and tossed the following code into my vhosts file (located in /private/etc/apache2/sites/virtual_host_global.conf) it finally worked.</p>
<p>AddOutputFilterByType DEFLATE text/html text/plain text/css<br />
AddOutputFilterByType DEFLATE text/javascript application/x-javascript<br />
BrowserMatch ^Mozilla/4 gzip-only-text/html<br />
BrowserMatch ^Mozilla/4.0[678] no-gzip<br />
BrowserMatch \bMSIE !no-gzip !gzip-only-text/html<br />
DeflateFilterNote Input input_info<br />
DeflateFilterNote Output output_info<br />
DeflateFilterNote Ratio ratio_info</p>
<p>// Tim</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: deckard</title>
		<link>http://installingcats.com/2007/12/12/mod_deflate-gzip-compression-http11-vs-10/comment-page-1/#comment-38</link>
		<dc:creator>deckard</dc:creator>
		<pubDate>Wed, 19 Dec 2007 05:17:51 +0000</pubDate>
		<guid isPermaLink="false">http://installingcats.com/2007/12/12/mod_deflate-gzip-compression-http11-vs-10/#comment-38</guid>
		<description>Those few lines of log were produced from the following:
         DeflateFilterNote Input input_info
         DeflateFilterNote Output output_info
         DeflateFilterNote Ratio ratio_info
         LogFormat '"%r" %{output_info}n/%{input_info}n (%{ratio_info}n%%)' deflate
         CustomLog /var/www/mysizzite.com/shared/log/myapp_deflate_log deflate

Which was added to httpd-vhosts.conf to debug mod_deflate.  The HTTP response codes for the above would have all been 200 so... not very exciting to include that.  By default Apache doesn't log mod_deflate activity, which is why you have to add it yourself.  And there's not much point in adding other logging info when that's all being saved in the regular 'combined' log files.</description>
		<content:encoded><![CDATA[<p>Those few lines of log were produced from the following:<br />
         DeflateFilterNote Input input_info<br />
         DeflateFilterNote Output output_info<br />
         DeflateFilterNote Ratio ratio_info<br />
         LogFormat &#8216;&#8221;%r&#8221; %{output_info}n/%{input_info}n (%{ratio_info}n%%)&#8217; deflate<br />
         CustomLog /var/www/mysizzite.com/shared/log/myapp_deflate_log deflate</p>
<p>Which was added to httpd-vhosts.conf to debug mod_deflate.  The HTTP response codes for the above would have all been 200 so&#8230; not very exciting to include that.  By default Apache doesn&#8217;t log mod_deflate activity, which is why you have to add it yourself.  And there&#8217;s not much point in adding other logging info when that&#8217;s all being saved in the regular &#8216;combined&#8217; log files.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: niq</title>
		<link>http://installingcats.com/2007/12/12/mod_deflate-gzip-compression-http11-vs-10/comment-page-1/#comment-37</link>
		<dc:creator>niq</dc:creator>
		<pubDate>Wed, 19 Dec 2007 00:01:08 +0000</pubDate>
		<guid isPermaLink="false">http://installingcats.com/2007/12/12/mod_deflate-gzip-compression-http11-vs-10/#comment-37</guid>
		<description>Hehe.

Where's that log sample coming from?  Apache's logs normally include the HTTP response code, which would've made it much clearer what was going on.</description>
		<content:encoded><![CDATA[<p>Hehe.</p>
<p>Where&#8217;s that log sample coming from?  Apache&#8217;s logs normally include the HTTP response code, which would&#8217;ve made it much clearer what was going on.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
