2015-08-19 37 views
0

我加入以下在httpd.conf國防部緊縮:服務器啓用壓縮在httpd.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 1 

# 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> 

壓縮工作精絕片段後採取更多的資源,但服務器時間太長迴應回請求,我也檢查了top命令,它顯示99%的CPU使用率。 如何讓這個壓縮更有效率?或者其他任何可能方便進一步分析的命令?

回答

0

如果響應可緩存,請添加mod_expires和mod_cache + mod_disk_cache以動態緩存壓縮的變體。