apache下安装mod_gzip失败

有,呵呵。怎么配置啊,请指教
1,
/usr/local/apache/bin/apxs -i -c /apache_path/modules/filters/mod_deflate.c
2,在 httpd.conf 加上
————————————————————————
LoadModule deflate_module modules/mod_deflate.so
<ifmodule mod_deflate.c>
DeflateCompressionLevel 9
AddOutputFilterByType DEFLATE text/html text/xml text/css application/x-httpd-php
AddOutputFilter DEFLATE html htm xml php css
</ifmodule>
————————————————————————
3,DeflateCompressionLevel 9 这里的9可以根据负载调整,0-9 ,值越小压缩就越小,cpu负载也会减轻(希望没有记错,欢迎指正)。
感谢楼上的


QUOTE:
原帖由 乔苏 于 2006-12-11 22:31 发表
1,
/usr/local/apache/bin/apxs -i -c /apache_path/modules/filters/mod_deflate.c
2,在 httpd.conf 加上
————————————————————————
LoadModule deflate_module modules/mod_defl ...

请问哪有详细的介绍?


QUOTE:
原帖由 乔苏 于 2006-12-11 22:31 发表
1,
/usr/local/apache/bin/apxs -i -c /apache_path/modules/filters/mod_deflate.c
2,在 httpd.conf 加上
————————————————————————
LoadModule deflate_module modules/mod_defl ...

The DeflateCompressionLevel directive specifies what level of compression should be used, the higher the value, the better the compression, but the more CPU time is required to achieve this.

你理解错了,呵呵
怎么看效果啊?
老大帮忙啊!
顶,请高手进?
http://sourceforge.net/tracker/i ... 975&atid=475504

Date: 2004-10-11 10:23
Sender: schroepl
Logged In: YES
user_id=211909

mod_gzip 1.3.x will only run with Apache 1.3.x. because the
internal module API is totally different in Apache 2.x.

For use with Apache 2.x I suggest mod_deflate
(http://httpd.apache.org/docs-2.0/mod/mod_deflate.html) that
ships with Apache 2.x.