Apache が favicon を圧縮できるようにするにはどうすればよいですか?
FAILED - (11.6 KB, compressed = 5.7 KB - savings of 5.9 KB) - http://website/favicon.ico
あなたの例から判断すると、失敗は WebPagetest によるものです。
以下の行をファイルに追加します/etc/apache2/mods-enabled/deflate.conf
(Ubuntu 12.04 上の Apache 2.2 の場合)。
AddOutputFilterByType DEFLATE image/x-icon
その後、Apacheをリロードします。
Nginx を使用したアセット圧縮の構成は次のとおりです。
gzip on;
gzip_min_length 1100;
gzip_buffers 4 32k;
gzip_types text/plain
application/x-javascript
text/xml
text/css
font/woff
application/font-woff
font/truetype
font/opentype
font/eot
application/vnd.ms-fontobject
image/svg+xml
image/x-icon;
gzip_vary on;