You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by "Fenlason, Josh" <jf...@ptc.com> on 2006/01/13 19:57:48 UTC

[users@httpd] mod_deflate question

I added the following to my Apache configuration:
 
  DeflateFilterNote Input instream
  DeflateFilterNote Output outstream
  DeflateFilterNote Ratio ratio
  LogFormat '"%r" %{outstream}n/%{instream}n (%{ratio}n%%)' deflate
  CustomLog logs/deflate_log deflate
  DeflateCompressionLevel 9
 
I have a question about the following entries from the resulting deflate
log.
 
    "GET /jsp-examples/deflated.jsp HTTP/1.1" 18/16 (112%)
    "GET /jsp-examples/notdeflated.jsp HTTP/1.1" -/- (-%)
 
The request for deflated.jsp, the first line, is being deflated,
correct?
The request for notdeflated.jsp, the second line, is *not* being
deflated, correct?
 
I just wanted to make sure I'm reading the log right.  Thanks in
advance.
,
Josh.