本文共 1434 字,大约阅读时间需要 4 分钟。
Nginx_concat_module是淘宝开发的基于Nginx减少HTTP请求数量的扩展模块,主要是用于合并减少前端用户Request的HTTP请求的数量。
taobao.com使用concat_module 进行css样式合并。
安装:
安装 nginx_concat_module 需要重新编译 nginx。可以从这里 checkout 最新的代码,
svn co http://code.taobao.org/svn/nginx_concat_module/trunk nginx_concat_module 然后下载适合你自己版本的 nginx 源码包,在 ./configure 中增加参数 –add-module=nginx_concat_module
cd /us/local/src
wget http://nginx.org/download/nginx-1.0.11.tar.gz
tar xzvf nginx-1.0.11.tar.gz
cd nginx-1.0.11/
./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
使用方法:
location /test/ { # 打开concat 功能 # 默认关闭 concat on; # 允许concat最大的文件数(http://m114.org/test/??1.css,2.css,3.css...10.css) 默认最大设置十个文件。 # (默认: 10) # concat_max_files 10; # 只允许相同类型的文件(例:http://m114.org/test/??m114.css,m23.js 默认情况下是不允许的) # 默认是开启的 # concat_unique on; # 允许内容的类型 # (default: application/x-javascript, text/css) # concat_types text/html; }
使用浏览器或者curl 进行访问
http://m114.org/test/??1.css,2.css,3.css…10.css
–>
Ps:
css/js 有顺序需求谨慎使用。
注意不要和rewrite 发生冲突。
本文转自crazy_charles 51CTO博客,原文链接:http://blog.51cto.com/douya/1555517,如需转载请自行联系原作者