Return-Path: Delivered-To: apmail-httpd-users-archive@www.apache.org Received: (qmail 95880 invoked from network); 17 Jan 2008 11:14:40 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 17 Jan 2008 11:14:40 -0000 Received: (qmail 68837 invoked by uid 500); 17 Jan 2008 11:14:20 -0000 Delivered-To: apmail-httpd-users-archive@httpd.apache.org Received: (qmail 68815 invoked by uid 500); 17 Jan 2008 11:14:20 -0000 Mailing-List: contact users-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: users@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list users@httpd.apache.org Received: (qmail 68803 invoked by uid 99); 17 Jan 2008 11:14:20 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 17 Jan 2008 03:14:20 -0800 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of kranti.parisa@gmail.com designates 72.14.202.176 as permitted sender) Received: from [72.14.202.176] (HELO ro-out-1112.google.com) (72.14.202.176) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 17 Jan 2008 11:13:55 +0000 Received: by ro-out-1112.google.com with SMTP id p4so241759roc.4 for ; Thu, 17 Jan 2008 03:14:00 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type; bh=cT+2g0IVm1Ak7LKa8l+7wMDPzTWlU+a86iSyS/viIxY=; b=s+tPXKxYIpDn0dsZh6K/xtYVjc2ol9dczca/tbgL/c8529Ozg4lqzYb+cIfK6t2EglyomBTNRBHBflvbSZwET43uhoVG5ukuFBNc2mFNEDKs1urDgzpf2ul79cZf6hMBAK7A9yFJCIixonSz0f0FxJOSjTCXMxgRYGqQ/GHlRQw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type; b=qd7NYj16ScDZsPawtRo3zYDTvqUwGnLwIth7ADhDbIpMKskJXbQwWCbfZsSmMe6eBalkcN+oK9N17ZuiQBKnqPbtnos0/eD0b6iYtMGpSXJO52m2hjpsL/Jtgtm1sYLHc44VVCzMWvwivkUSnbdBRV0JHgA5vofTD1Yvt0xcBVM= Received: by 10.114.192.1 with SMTP id p1mr2282331waf.47.1200568440191; Thu, 17 Jan 2008 03:14:00 -0800 (PST) Received: by 10.114.208.9 with HTTP; Thu, 17 Jan 2008 03:14:00 -0800 (PST) Message-ID: <4478b4ac0801170314yabe87dfnb78da5da92986aaf@mail.gmail.com> Date: Thu, 17 Jan 2008 16:44:00 +0530 From: "Kranti K K Parisa" To: users@httpd.apache.org MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_32967_22216283.1200568440146" X-Virus-Checked: Checked by ClamAV on apache.org Subject: [users@httpd] mod_deflate config error ------=_Part_32967_22216283.1200568440146 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi, I am trying to use mod_deflate module on apache 2. my httpd.conf contains sthe following. LoadModule deflate_module modules/mod_deflate.so SetOutputFilter DEFLATE BrowserMatch ^Mozilla/4 gzip-only-text/html BrowserMatch ^Mozilla/4\.0[678] no-gzip BrowserMatch \bMSIE !no-gzip !gzip-only-text/html SetEnvIfNoCase Request_URI\.(?:gif|jpe?g|png|wav|mp3|ogg|bmp|avi|mpg)$ no-gzip dont-vary DeflateCompressionLevel 7 DeflateWindowSize 15 and also i tried with the following: LoadModule deflate_module modules/mod_deflate.so SetOutputFilter DEFLATE SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary SetEnvIfNoCase Request_URI \.(?:exe|t?gz|zip|bz2|sit|rar)$ no-gzip dont-vary SetEnvIfNoCase Request_URI \.pdf$ no-gzip dont-vary BrowserMatch ^Mozilla/4 gzip-only-text/html BrowserMatch ^Mozilla/4\.0[678] no-gzip BrowserMatch \bMSIE !no-gzip !gzip-only-text/html both the cases apache is not getting started. any clues? ------=_Part_32967_22216283.1200568440146 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi,

I am trying to use mod_deflate module on apache 2.
my httpd.conf contains sthe following.

LoadModule deflate_module modules/mod_deflate.so
<Location />
SetOutputFilter DEFLATE
BrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4\.0[678] no-gzip
BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
SetEnvIfNoCase Request_URI\.(?:gif|jpe?g|png|wav|mp3|ogg|bmp|avi|mpg)$ no-gzip dont-vary
DeflateCompressionLevel 7
DeflateWindowSize 15
</Location>

and also i tried with the following:

LoadModule deflate_module modules/mod_deflate.so
<IFModule mod_deflate.c>
SetOutputFilter DEFLATE
SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary
SetEnvIfNoCase Request_URI \.(?:exe|t?gz|zip|bz2|sit|rar)$ no-gzip dont-vary
SetEnvIfNoCase Request_URI \.pdf$ no-gzip dont-vary
BrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4\.0[678] no-gzip
BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
</IFModule>

both the cases apache is not getting started.
any clues?

------=_Part_32967_22216283.1200568440146--