Chinaunix首页 | 论坛 | 博客
  • 博客访问: 29390
  • 博文数量: 5
  • 博客积分: 133
  • 博客等级: 入伍新兵
  • 技术积分: 111
  • 用 户 组: 普通用户
  • 注册时间: 2011-07-29 23:00
文章分类

全部博文(5)

文章存档

2012年(1)

2011年(4)

我的朋友

分类: LINUX

2011-11-30 21:13:12

    Nginx_concat_module是淘宝(JoshuaZhu)开发的基于Nginx减少HTTP请求数量的扩展模块,主要是用于合并减少前段用户Request的HTTP请求的数量。
taobao.com



taobao.com使用concat_module 进行css样式合并。

安装:
安装 nginx_concat_module 需要重新编译 nginx。可以从这里 checkout 最新的代码,
svn checkout  $NGINX_CONCAT_MODULE
然后下载适合你自己版本的 nginx 源码包,在 ./configure 中增加参数
--add-module=$NGINX_CONCAT_MODULE
      
cd /us/local/src
wget 
tar xzvf nginx-1.0.10.tar.gz
cd nginx-1.0.10/
./configure --user=www --group=www  --prefix=/usr/local/nginx --with-http_stub_status_module  --with-http_sub_module    --with-http_flv_module   --with-http_gzip_static_module   --add-module=../nginx_concat_module/  && make && make install
使用方法:
  1. location /temp/ {
  2.                  # 打开concat 功能
  3.                  # 默认关闭
  4.                  concat on;
  5.                  
  6.                  # 允许concat最大的文件数(http://,2.css,3.css...10.css) 默认最大设置十个文件。
  7.                  # (默认: 10)
  8.                  # concat_max_files 10;

  9.                  # 只允许相同类型的文件(例:http://,zongzk.js 默认情况下是不允许的)
  10.                  # 默认是开启的
  11.                  # concat_unique on;

  12.                  # 允许内容的类型
  13.                  # (default: application/x-javascript, text/css)
  14.                  # concat_types text/html;
  15.         }
  1. #for i in {1..100};do echo "$i" > ./"$i".css ;done
使用浏览器或者curl 进行访问
http://,2.css,3.css...10.css
-->
Ps:
css/js 有顺序需求谨慎使用。
注意不要和rewrite 发生冲突。
----------------------------------------------------------------------------
有关 nginx_concat_module 的任何意见和建议,可以联系其作者 Joshua Zhu
阅读(3513) | 评论(1) | 转发(1) |
0

上一篇:没有了

下一篇:Memcache监控流量脚本

给主人留下些什么吧!~~

zzkmatthew2011-11-30 21:24:19

希望对大家有帮助!!