Nginx nginx_concat_module 模塊

6.添加:nginx_concat_module 模塊
簡介
nginx concatmodule 是  淘寶研發的針對 nginx 的文件合併模塊 ,主要用於  合併前端代碼減小 http 請求數 。若是你的應用環境中部署了 nginx,那麼能夠考慮嘗試此模塊減小請求數。

安裝: html

tar zxvf nginx-1.0.10. tar .gz
cd nginx-1.0.10
 
svn checkout http: //code .taobao.org /svn/nginx_concat_module/trunk/ $NGINX_CONCAT_MODULE            #模塊代碼
 
  . /configure --user=nginx --group=nginx --prefix= /usr/local/nginx/ --with-http_stub_status_module --with-http_ssl_module --with-sha1= /usr/lib --add-module= /usr/src/nginx-1 .0.10 /trunk/
 
make && make install
 

 

配置: 前端

在所須要個該模塊的 location 下開啓模塊例如: nginx

 

location / {
.............                      
                     concat on;    #開啓模塊
                     # concat_max_files 10;    # 最大合併文件數
                     
                     # concat_unique on;       # 只容許同類型文件合併
                 }

訪問舉例 web

http://192.168.1.X/js/??ssse.js,de.js       把:base.js,home.js合併 bash

相關文章
相關標籤/搜索