mod_deflate gzips对不应该gzip的MIME类型的响应

时间:2013-03-22 09:15:07

标签: apache http gzip mime-types mod-deflate

我在Red Hat 6.4上的Tomcat应用程序前面有一个Apache 2.2.15实例作为代理。我正在尝试将Apache实例配置为gzip某些(白名单内容类型)对客户端的响应。 Apache正在使用mod_jk连接到Tomcat(尽管使用mod_proxy时会出现同样的问题,所以我认为我的问题与mod_jk或Tomcat无关。)

我有这个非常简单的mod_deflate配置:

AddOutputFilterByType DEFLATE text/html

这会导致text/html响应按预期进行gzip压缩。但是,当我尝试下载Tomcat生成的文件时,例如内容类型为application/vnd.ms-excel的电子表格,这些文件也会被gzip压缩:

以下是直接从Tomcat下载文件时的响应标头:

Cache-Control:max-age=0
Content-Disposition:attachment; filename="file-20130322-104702.xls";
Content-Length:699904
Content-Type:application/vnd.ms-excel
Date:Fri, 22 Mar 2013 08:47:02 GMT
Expires:Thu, 01 Jan 1970 00:00:00 GMT
Pragma:public
Server:Apache-Coyote/1.1
Set-Cookie:fileDownloadToken=true; Path=/

这是通过Apache下载文件的时候:

Cache-Control:max-age=0
Connection:Keep-Alive
Content-Disposition:attachment; filename="file-20130322-104524.xls";
Content-Encoding:gzip
Content-Type:application/vnd.ms-excel
Date:Fri, 22 Mar 2013 08:45:24 GMT
Expires:Thu, 01 Jan 1970 00:00:00 GMT
Keep-Alive:timeout=30, max=100
Pragma:public
Server:Apache-Coyote/1.1
Set-Cookie:fileDownloadToken=true; Path=/
Transfer-Encoding:chunked
Vary:Accept-Encoding

我无法弄清楚为什么mod_deflate正在抓取此响应(上图)?

在注释掉行AddOutputFilterByType DEFLATE text/html之后,文件不再被gzip压缩,所以我确定它是触发mod_deflate的那一行。内容类型为application/vnd.openxmlformats-officedocument.spreadsheetml.sheet的文件下载也存在同样的问题,也可能存在其他问题。但是,从Tomcat(通过Apache)下载javascript文件不会被gzip压缩(正如预期的那样,因为内容类型与规则不匹配):

Accept-Ranges:bytes
Cache-Control:PUBLIC, max-age=28800, must-revalidate
Connection:Keep-Alive
Content-Length:5578
Content-Type:application/javascript
Date:Fri, 22 Mar 2013 09:09:35 GMT
ETag:W/"5578-1362994418000"
Expires:Fri, 22 Mar 2013 17:09:35 GMT
Keep-Alive:timeout=30, max=100
Last-Modified:Mon, 11 Mar 2013 09:33:38 GMT
Server:Apache-Coyote/1.1

mod_deflate gzips这些电子表格的事实是一个问题,因为它会导致响应被缓冲,触发分块编码,这是我不想要的,因为我希望浏览器显示进度监视器(这些可能是非常大的文件)

有什么想法吗?

1 个答案:

答案 0 :(得分:-1)

使用文件扩展名匹配来添加标题:

<filesMatch "\.(html)$">
# Header set Content-Encoding x-deflate
# Header set Content-Encoding deflate
# Header set Content-Encoding gzip
</filesMatch>

尝试每一个并选择效果最好的那个。