安裝: 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