1:安装apr
2: 安装apr-util
3:安装httpd
编译参数:
[root@qht124 build]# cat config.nice
#! /bin/sh
#
# Created by configure
"./configure" \
"--with-apr=/usr/local/apr/bin/apr-1-config" \
"--with-apr-util=/usr/local/apr-util/bin/apu-1-config" \
"--enable-so" \
"--enable-modules=all" \
"--enable-mods-shared=all" \
"--enable-cache" \
"--enable-file-cache" \
"--enable-disk-cache" \
"--enable-mem-cache" \
"--with-mpm=worker" \
"--enable-rewrite" \
"--prefix=/usr/local/apache2.2.20" \
"$@"
4:在httpd.conf中加入(在文件的末尾加入):
CacheRoot /usr/local/apache2.2.20/cache
CacheEnable disk /
CacheMaxFileSize 10000000
CacheMinFileSize 1
CacheDirLevels 5
CacheDirLength 3
5:测试:
mkdir -p /usr/local/apache2.2.20/cache
cd /usr/local/apache2.2.20
chmod 777 cache
在另外一台机器上访问: 即可有缓存目录生成,见附件!
遇到一个问题,用另外一个版本的apache,就是不对index.html文件缓存,其他的文件则可以(甚是奇怪!)
如果将cache目录下的所有缓存删除后,刷新浏览器,则不会在cache下重新生成缓存,原因:浏览器直接使用的是自己的缓存,而没有去访问服务器,将浏览器到缓存清空后,重新访问,则在cache下就有缓存目录生成!
阅读(2069) | 评论(0) | 转发(0) |