博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
nginx 的提升多个小文件访问的性能模块
阅读量:5158 次
发布时间:2019-06-13

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

阿里开源的第三方模块下载地址:

下载模块

git clone  https://github.com/alibaba/nginx-http-concat.git

 编译进nginx里

cd nginx-1.15.9/使用--add-module=参数指定第三方模块路径 ./configure --prefix=/data/web --sbin-path=/usr/bin --user=nginx --group=nginx --with-http_stub_status_module --with-http_auth_request_module --add-module=/root/nginx-http-concatmake 主cp ~/nginx-1.15.9/objs/nginx /usr/bin/  把可执行文件复制指定目录,备份之前可执行文件

  配置

server {	server_name concat.com;	error_log logs/concat_error.log debug;	concat on;  #是否启用	root html;	location /concat {		concat_max_files 30; # 定义可在给定上下文中连接的最大文件数。请注意给定的URI不能大于平台的页面大小。在Linux上,您可以获得页面大小发布:		concat_types text/plain text/css text/html;#定义可在给定上下文中连接的MIME类型		concat_unique on;#定义是否只能连接给定MIME类型的文件,或者是否可合并多类型。例如,如果off 在给定的上下文中设置为then,则可以连接Javascript和CSS文件。请注意,默认值为on,意味着只有具有相同MIME类型的文件在给定上下文中连接。所以,如果你有CSS和JS,你不能做这样的事情:为了做到这一点,你必须设置concat_unique off。这适用于您决定通过添加相应的MIME类型来连接的任何其他类型的文件concat_types,		concat_delimiter ':::'; #定义两个文件之间的分隔符。如果配置为concat_delimiter“\ n”,则当访问http://example.com/??1.js,2.js时,将在1.js和2.js之间插入'\ n'。		concat_ignore_file_error on;#是否忽略404和403。	}}  

    网页

[root@python html]# mkdir concat[root@python html]# cd concat/[root@python concat]# echo "1.txt" > 1.txt[root@python concat]# echo "2.txt" > 2.txt[root@python concat]# echo "2.css" > 2.css[root@python concat]# echo "1.css" > 1.css

  

测试

[root@python vhast]# curl www.concat.com/concat/??1.css,2.txt,2.css,1.txt1.css:::2.txt:::2.css:::1.txt[root@python vhast]# curl www.concat.com/concat/??1.css,2.txt,1.txt1.css:::2.txt:::1.txt[root@python vhast]# curl www.concat.com/concat/??1.txt,2.txt1.txt:::2.txt

  

  

 

转载于:https://www.cnblogs.com/rdchenxi/p/11175310.html

你可能感兴趣的文章
jdbc连接数据库方式问题
查看>>
一步一回头撞在了南墙上
查看>>
POJ2965 The Pilots Brothers' refrigerator
查看>>
C# 2.0 中的新增功能01 分布类与分部方法
查看>>
关于腾讯ip接口一个流传很广的错误用法
查看>>
XMU 1056 瞌睡 vs 听课 【动态规划】
查看>>
openlayers3中应用proj4js
查看>>
java 浅拷贝和深拷贝
查看>>
对于数组排序类算法的终极解决方案
查看>>
Android 学习 豆瓣学习 sd卡缓存 内存缓存 下拉刷新 日志编辑等
查看>>
如何配置git send-email相关的邮箱信息?
查看>>
修改权限
查看>>
Oracle 数据库基本操作——用户管理与文件管理
查看>>
Java环境/安装问题
查看>>
单链表 - 数据结构
查看>>
读写数据
查看>>
How Crushing Machinery Industry Better Develops Itself
查看>>
Spring框架的事务管理之声明式事务管理的类型
查看>>
身为多年的ubuntu用户。。。
查看>>
Educational Codeforces Round 24
查看>>