[Mod_gzip] mod_gzip installed but not working

Glenn mod_gzip@lists.over.net
Thu, 18 Mar 2004 14:34:02 -0500


On Thu, Mar 18, 2004 at 10:17:01AM -0800, Bob Jaques wrote:
> 
> > telnet machine-1.sfgate.com 80
> >   GET / HTTP/1.0
> >   Host: www.sfgate.com
> >   Accept-encoding: gzip
> >
> > (hit enter twice and see if you get gobbelty-gook)
> >
> We have set mod_gzip for http 1.1. I wonder if the web test sites
> are saying get http 1.0?  When I try http/1.0 it says compression
> unsupported
> and in telnet disconnects me, if I specify 1.1 I get the compressed file
> should I change the settings to 1.0. I though most browsers today would
> specify
> 1.1 at least.

Good, so it works with HTTP/1.1
Depending on your mod_gzip rules, you might return gzipped content
for HTTP/1.0 if the browser sends Accept-encoding: gzip
It was the default in IE 5(?) that if IE was using a proxy, it would
use HTTP/1.0 by default, although there was a checkbox to use HTTP/1.1
(many proxies are broken messes and HTTP/1.0 was more compatible)

Now, what is the ServerIron sending for transactions through it?
What do your access logs say?  HTTP/1.0 for all requests?
HTTP/1.1 on some?  Which, if any, are getting compressed content.
Try modifying your access log to also log the contents of Accept-encoding
if present.  What do mod_gzip specific log parameters tell you?
See the LogFormat example at
  http://www.schroepl.net/projekte/mod_gzip/config.htm

Cheers,
Glenn