Return-Path: Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 99649 invoked by uid 500); 4 Dec 2002 15:42:16 -0000 Mailing-List: contact dev-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list dev@httpd.apache.org Received: (qmail 99635 invoked from network); 4 Dec 2002 15:42:16 -0000 From: "Bill Stoddard" To: Subject: RE: mod_deflate with mod_jk Date: Wed, 4 Dec 2002 10:42:10 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) Importance: Normal In-Reply-To: <3DEE209A.7060004@apache.org> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N You are only installing the DEFLATE filter on files that end in .html. Try this instead: SetEnv gzip-only-text/html 1 SetOutputFilter DEFLATE Bill > Hi to all, > > I built deflate and jk but deflate seems to compress > only static (ie no servlet/jsp) contents. > > I've used : > > Listen x.x.x.x:y > NameVirtualHost x.x.x.x:y > > > ServerName host.domain.tld > AddOutputFilter DEFLATE html > > > AllowOverride None > > > > AllowOverride None > Deny from all > > > JkMount /servlet/* ajp13 > JkMount /*.jsp ajp13 > > > >