实现有价值的IT服务
全部博文(709)
分类: IT职场
2005-11-07 21:58:09
apache1.3.x可以用mod_gzip进行优化网页浏览的速度,可以明显的感觉到速度的提升。在apache2中也尝试用mod_gzip,但是配置后确发现网页不能正确显示(空白页),所以改换mod_deflate。
在Linux命令行下运行以下命令安装mod_deflate模块(斜体是apache2的目录)
/usr/local/apache2/bin/apxs -i -c /root/httpd-2.0.48/modules/filters/mod_deflate.c
编辑httpd.conf,加入以下内容:
LoadModule deflate_module modules/mod_deflate.so
DeflateFilterNote ratio
LogFormat '"%v %h %l %u %t "%r" %>s %b "%i" "%i"" (%n)' deflate
# 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 MSIE !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命令不对?注释这一行
# Header append Vary User-Agent env=!dont-vary
#查找Customlog 注释原来的的一行,改成
CustomLog logs/deflate_log deflate
#查看logs目录下deflate_log文件,你可以看到许多这样的信息:
" 220.163.107.88 - - [27/Mar/2004:01:03:55 -0800] "GET /ad/usrlogo
/21PHPLOGO_88X31.gif HTTP/1.1" 200 3656 "" "Mozilla
/4.0 (compatible; MSIE 5.5; Windows 98)"" (-)
" 211.144.88.138 - - [27/Mar/2004:01:03:57 -0800] "GET /tutorial/t
utorial.php?tid=68 HTTP/1.1" 200 5173 ".
php?catalogid=12" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; MyIE2; .
NET CLR 1.0.3705; Alexa Toolbar)"" (29)
" 211.144.88.138 - - [27/Mar/2004:01:03:58 -0800] "GET /style.css
HTTP/1.1" 304 - "" "Mozilla
/4.0 (compatible; MSIE 6.0; Windows NT 5.1; MyIE2; .NET CLR 1.0.3705; Alexa Tool
bar)"" (-)
" 211.144.88.138 - - [27/Mar/2004:01:03:58 -0800] "GET /images/bar
-4.gif HTTP/1.1" 304 - "" "
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; MyIE2; .NET CLR 1.0.3705; Ale
xa Toolbar)"" (-)
" 211.144.88.138 - - [27/Mar/2004:01:03:58 -0800] "GET /images/log
o.gif HTTP/1.1" 304 - "" "M
ozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; MyIE2; .NET CLR 1.0.3705; Alex
a Toolbar)"" (-)
" 211.144.88.138 - - [27/Mar/2004:01:03:58 -0800] "GET /images/ico
n1.gif HTTP/1.1" 304 - "" "
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; MyIE2; .NET CLR 1.0.3705; Ale
xa Toolbar)"" (-)
Boban < > 写于2004年3月27日凌晨
附注:关于mod_deflate的详细内容,可以参考
mod_mp3让apache成为流媒体服务器 |
dingjeff 发表于 2004年10月07日19时15分 |
模块:mod_mp3 下载地址: 官方网站: DSO安装方式 >tar -xzf mod_mp3-0.40.tar.gz >cd mod_mp3-0.40 >./configure --with-apxs=/path/to/apache/bin/apxs >make >make install 安装程序在httpd.conf添加了 LoadModule mp3_module libexec/mod_mp3.so AddModule mod_mp3.c 修改httpd.conf include /path/to/apache/conf/mp3.conf 修改mp3.conf ServerName domainname MP3 /tmp/mp3 #此处为你存放mp3歌曲文件的目录 重起服务器。 测试好了打开音箱吧。听到了吗?你 |