web-dev-qa-db-ja.com

mod_deflateが実際に機能しているかどうかを確認する方法は?

私はhttp.confファイルに以下を入れました:

# mod_deflate configuration
<IfModule mod_deflate.c>

# Restrict compression to these MIME types
AddOutputFilterByType DEFLATE text/plain
AddOutputFilterByType DEFLATE text/html
AddOutputFilterByType DEFLATE application/xhtml+xml
AddOutputFilterByType DEFLATE text/xml
AddOutputFilterByType DEFLATE application/xml
AddOutputFilterByType DEFLATE application/x-javascript
AddOutputFilterByType DEFLATE text/javascript
AddOutputFilterByType DEFLATE text/css

# Level of compression (Highest 9 - Lowest 1)
DeflateCompressionLevel 9

# 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 \bMSI[E] !no-gzip !gzip-only-text/html

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

</IfModule>

私のコンテンツはgzipタイプのContent-Encodingで返されませんが、304が大幅に増え、Etagに+ gzipサフィックスが追加されています。 mod_deflateは実際にその仕事をしていますか? (n00bっぽさについて申し訳ありません)

6
Jay

ヘッダーから何がわかりますか。「content-encoding:gzip」が返されない場合、おそらく機能していません。次のようにテストできます。

curl -I -H 'Accept-Encoding: gzip,deflate' http://yoursite.com/somefile
10

LogLeveldebugに設定すると、mod_deflateはデバッグメッセージを ErrorLog に記録します。圧縮されているすべてのリソースがログアウトされます。 mod_deflateがリアルタイムで動作しているかどうかを確認できます

tail -f /path/to/error-log | grep deflate

例えば.

[Wed Apr 22 05:37:49.742615 2015] [deflate:debug] [pid 22627] mod_deflate.c(849):[client 127.0.0.1:55667] AH01384:Zlib:Compressed 10700 to 2637:URL/web/js/common.js、referer: http://localhost/index.php

1
Taz

AddOutputFilterByType のApacheドキュメントは、このディレクティブがApache httpd 2.1以降では非推奨であることを示しており、ApacheがMIMEタイプを判別できない場合、常に適切に機能するとは限りません。

開始点として次のようなものを使用して圧縮を有効にしてから、ブラウザの微調整と圧縮レベルをすべて追加することをお勧めします。明らかに、実際にmod_deflate.soをロードしていることを確認するために、httpd.confを再確認することもできます。 :

<Location />
    SetOutputFilter DEFLATE
    # Don't compress images
    SetEnvIfNoCase Request_URI \.(?:gif|png|jpg|jpeg)$ no-gzip dont-vary
    Header append Vary User-Agent env=!dont-vary
</Location>

確認するには、Michael Steinfeldが述べたcURLを使用します。

1
mahnsc

評判がよくないのでコメントは付けられません。

Michael Steinfeldによる最初の回答は、次のエラーを出力していました(Windowsコマンドプロンプト)。

curl: (6) Could not resolve Host: gzip,deflate'

コロンの後のスペースを削除することで解決しました:

curl -I -H 'Accept-Encoding:gzip,deflate' http://yoursite.com/somefile

0
losaliens