标签:install cli apach 安装环境 css tar 执行 figure lis
1.压缩功能的开启chmod +x /etc/init.d/httpd
chkconfig --add httpd
chkconfig --list httpd
chkconfig --level 35 httpd on //给脚本执行权限及开机自启动
ln -s /usr/local/httpd/conf/httpd.conf /etc/httpd.conf //建立软连接便于管理
vim /etc/httpd.conf
cd /usr/local/httpd/bin
./apachectl -t //检查httpd.conf的语法
vim /etc/httpd.conf
LoadModule deflate_module modules/mod_deflate.so //开启压缩功能模块
在文件末尾插入如下信息
<IFModule mod_deflate.c>
AddOutputFilterByType DEFLATE text/html text/plain text/css text/xml text/javascript //可压缩文件类型
DeflateCompressionLevel 9 //压缩比
SetOutputFilter DEFLATE //支持压缩模块的类型(DEFLATE)
</IfModule>
./apachectl -t -D DUMP_MODULES | grep "deflate" //检查压缩功能模块是否开启
2.缓存设置
./configure \
--prefix=/usr/local/httpd \
--enable-deflate \
--enable-expires \
--enable-so \
--enable-rewrite \
--enable-charset-lite \
--enable-cgi
make && make install
grep -v "#" /usr/local/httpd/bin/apachectl > /etc/init.d/httpd
vim /etc/init.d/httpd 在文件最前面插入下面的行
#!/bin/sh
chmod +x /etc/init.d/httpd
chkconfig --add httpd
chkconfig --list httpd
chkconfig --level 35 httpd on //给脚本执行权限及开机自启动
ln -s /usr/local/httpd/conf/httpd.conf /etc/httpd.conf
vim /etc/httpd.conf
LoadModule expires_module modules/mod_expires.so //开启缓存功能模块
在文件末尾插入如下信息
</IfModule>
<IFModule mod_deflate.c>
ExpiresActive On
ExpiresDefault "access plus 50 seconds"
</IfModule>
cd /usr/local/httpd/bin
./apachectl –t //检查语法是否正确
标签:install cli apach 安装环境 css tar 执行 figure lis
原文地址:http://blog.51cto.com/13842738/2164962