永久黄网站色视频免费直播,yy6080三理论日本中文,亚洲无码免费在线观看视频,欧美日韩精品一区二区在线播放

為apache增加模塊

apache使用模塊有兩種方式
1 是在編譯時編譯成靜態(tài),速度相對會快些
2 安裝好后增加為動態(tài)加態(tài),靈活使用

在此介紹下動態(tài)編譯加載的方法,如現(xiàn)在要增加一個mod_expires
進(jìn)入apache的源碼模塊目錄,如
/root/lanmp/httpd-2.2.17/modules
如沒有源碼包,可到官網(wǎng)下載
這里包括了所有的模塊
mod_expires在metadata目錄下
[root@wdlinux metadata]# pwd
/root/lanmp/httpd-2.2.17/modules/metadata

執(zhí)行
/www/wdlinux/apache/bin/apxs -i -c -a mod_expires.c
如果沒出錯,執(zhí)行完就OK了

然后加上配置,如
vi /www/wdlinux/apache/conf/httpd.conf
<IfModule mod_expires.c>
    ExpiresActive On
    ExpiresByType image/gif "access plus 300 minutes"
    ExpiresByType image/jpeg "access plus 300 minutes"
    ExpiresByType image/png "access plus 300 minutes"
    ExpiresByType text/css "access plus 300 minutes"
    ExpiresByType application/x-shockwave-flash "access plus 300 minutes"
    #ExpiresByType application/x-shockwave-flash "access plus 300 minutes"
    #ExpiresDefault "now plus 1 day"
</IfModule>

重起服務(wù)
service httpd restart
完成

歡迎轉(zhuǎn)載,但請保留此信息
[我的Linux,讓Linux更易用] CentOS精簡版,集成lamp,lnmp版,wdcp,wdcdn,wddns,一鍵安裝包,集群負(fù)載均衡LVS,智能DNS/CDN,性能優(yōu)化
本文連接:http://www.fsowen.com/old/node/580