mod_deflate - 大多数浏览器的最佳配置

mod_deflate - 大多数浏览器的最佳配置

我想知道是否有人可以帮助我确定使用 mod deflate 与 Apache 的最佳标准配置。基本上,mod_deflate 建议使用以下配置立即开始使用:

仅压缩少数几种类型

AddOutputFilterByType DEFLATE 文本/html 文本/纯文本/xml http://httpd.apache.org/docs/2.0/mod/mod_deflate.html

但是,只要阅读文档,您就可以针对所有浏览器自定义此功能。此外,您还可以针对所有不同类型的 MIME 类型自定义 mod_deflate。我想知道是否有人尝试过这些设置并找到了适合所有浏览器的最佳设置。

Apache 提供的另一个示例,但如果您不了解所有配置选项,请不要使用:

<Location />
# Insert filter
SetOutputFilter DEFLATE

# Netscape 4.x has some problems...
BrowserMatch ^Mozilla/4 gzip-only-text/html

# Netscape 4.06-4.08 have some more problems
BrowserMatch ^Mozilla/4\.0[678] no-gzip

# MSIE masquerades as Netscape, but it is fine
# BrowserMatch \bMSIE !no-gzip !gzip-only-text/html

# NOTE: Due to a bug in mod_setenvif up to Apache 2.0.48
# the above regex won't work. You can use the following
# workaround to get the desired effect:
BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html

# Don't compress images
SetEnvIfNoCase Request_URI \
\.(?:gif|jpe?g|png)$ no-gzip dont-vary

# Make sure proxies don't deliver the wrong content
Header append Vary User-Agent env=!dont-vary
</Location>

http://httpd.apache.org/docs/2.0/mod/mod_deflate.html

我了解大多数配置设置,我想设置一些类似的设置。我不介意避免压缩已经压缩的图像和其他媒体。我遇到的问题在于细节,即了解这会如​​何与现有的所有不同浏览器(chrome、firefox、IE、Opera 等)产生反应... 显然,我并不关心 Netscape 4.X。我希望有人已经测试过所有这些,并可能能够推荐一个符合此标准的良好设置。

我的意思是,如果只是使用文档中推荐的设置,我没问题,但我想检查一下以确保万无一失。

仅提供一些额外的细节。我们使用 Apache 作为我们所有 Web 服务的前端。例如:confluence、git、gitweb 等...

Tomcat 和其他服务通过 Apache 代理,因此我们有虚拟主机、mod_proxy w/AJP、mod_ssl 的配置。

我的公司没有专门的 IT 团队,所以我必须利用业余时间完成大部分设置。如果您能提供任何意见,我将不胜感激。

因此,为了清楚地说明我的问题,处理从 Apache 到主流浏览器的请求的基本内容需求的最佳配置是什么?

到目前为止我的基本内容类型列表:

  • 文本/html
  • 文本/纯文本
  • 文本/xml
  • 文本/x-js
  • 文本/javascript
  • 文本/css
  • 应用程序/xml
  • 应用程序/xhtml+xml
  • 应用程序/x-javascript
  • 应用程序/javascript
  • 应用程序/json

显然不需要压缩的类型:

  • 图片 - gif、jpg、png
  • 档案 - exe、gz、zip、sit、rar

答案1

我继续研究这个问题。在阅读了多个教程和 Apache 文档后,我能够拼凑出一些实质性的东西,这些东西似乎很有效。使用上面的列表,我整理了一组规则/声明,它们似乎可以处理主流内容类型的压缩:

<Location />
# Insert filter
SetOutputFilter DEFLATE

AddOutputFilterByType DEFLATE text/html text/plain text/xml text/x-js text/javascript text/css 
AddOutputFilterByType DEFLATE application/xml application/xhtml+xml application/x-javascript application/javascript
AddOutputFilterByType DEFLATE application/json

BrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4\.0[678] no-gzip
BrowserMatch \bMSIE !no-gzip !gzip-only-text/html

# Don't compress images
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

</Location>

为了测试,我基本上使用了 Firefox 的 TamperData 并打开了 apache 的 deflate 日志记录:

https://addons.mozilla.org/en-US/firefox/addon/tamper-data/

对于 Apache,添加以下内容:

# For Testing Purposes
DeflateFilterNote Input instream
DeflateFilterNote Output outstream
DeflateFilterNote Ratio ratio

#LogFormat '"%r" %{outstream}n/%{instream}n (%{ratio}n%%)' deflate
CustomLog logs/deflate_log deflate

http://httpd.apache.org/docs/2.0/mod/mod_deflate.html#deflatefilternote

相关内容