[Linux笔记]DirectAdmin添加mod_pagespeed加速Apache

Leave a comment

mod_pagespeed是一个apache的加速模块,他是由谷歌公司免费提供的傻瓜式网站优化工具,这个加速模块可以自行对网络传输的html字节及图像,以及css压缩等优化,据称该模块最大可以将网页加载速度提高50%,而且它拥有智能缓存系统,最大限度减少了配置上的麻烦。

一、获得模块

wget http://soft.kwx.gd/module/mod-pagespeed-beta_current_i386.rpm #32位
wget http://soft.kwx.gd/module/mod-pagespeed-beta_current_x86_64.rpm #64位

二、执行安装

rpm -i --nodeps mod-pagespeed-beta_current_*.rpm 

SSH执行以上命令,安装该模块,提示“package mod-pagespeed-beta-0.10.22.4-1633.i386 is already installed”则表示安装成功。


三、修改相关文件
1、编辑httpd-includes.conf

vim /etc/httpd/conf/extra/httpd-includes.conf

编辑httpd-includes.conf,并添加以下内容,调用Google PageSpeed模块

#Google PageSpeed Module
Include /etc/httpd/conf.d/pagespeed.conf

2、注释apache自带的httpd-deflate模块

vim /etc/httpd/conf/httpd.conf 

找到“Include conf/extra/httpd-deflate.conf”,在其前面加“#”注释。
四、重启apache并检查模块状态
1、重启apache

service httpd restart 

2、检查模块是否生效

apachectl -t -D DUMP_MODULES | grep pagespeed 

SSH执行以上命令,显示pagespeed_module (shared),则表示模块成功加载。

本文出自LinuxVPS学习者

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注