Nginx nginx_concat_module 模块

程亦
2023-12-01
6.添加:nginx_concat_module 模块
简介
nginx concatmodule 是  淘宝研发的针对 nginx 的文件合并模块 ,主要用于  合并前端代码减少 http 请求数 。如果你的应用环境中部署了 nginx,那么可以考虑尝试此模块减少请求数。

安装:

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 下开启模块例如:

 

location / {
.............                      
                     concat on;    #开启模块
                     # concat_max_files 10;    # 最大合并文件数
                     
                     # concat_unique on;       # 只允许同类型文件合并
                 }

访问举例

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


转载于:https://my.oschina.net/u/214948/blog/87559

 类似资料: