博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
淘宝研发的针对 nginx 的文件合并模块-Nginx_concat_module
阅读量:6344 次
发布时间:2019-06-22

本文共 1434 字,大约阅读时间需要 4 分钟。

Nginx concat模块减轻http请求连接数

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,如需转载请自行联系原作者

你可能感兴趣的文章
zookeeper安装部署
查看>>
centos6——初始化脚本
查看>>
linux I/O优化 磁盘读写参数设置
查看>>
中断处理 I/O内存
查看>>
Java中的transient关键字
查看>>
私有网盘nextcloud 12的问题处理及优化
查看>>
思科设备VLAN之间通信配置
查看>>
mysql排错 (一)
查看>>
关于微信小程序 modal弹框组件的介绍
查看>>
给一系列的div中的第一个添加class
查看>>
centos6.8 安装jenkins
查看>>
vue-cli3.0+node.js+axios跨域请求session不一样的问题
查看>>
C#发送DKIM签名的邮件
查看>>
python中获取字典的key列表和value列表
查看>>
Windows8中使用IE8等低版本浏览器
查看>>
[图形图像]一次光线追踪的尝试
查看>>
C# 中out,ref,params参数的使用
查看>>
玩转VIM编辑器-vim附加特性
查看>>
Ubuntu下有关Java和数据库的一些工作记录(二)
查看>>
java 线程
查看>>