Nginx echo模块是在nginx程序上扩展了 echo
输出字符的功能,对于调试很方便,项目地址: https://github.com/openresty/echo-nginx-module 。
#安装
目前支持
nginx-1.11.2
,高版本可能安装失败,我装1.11.13
失败了,更多支持nginx的版本见: https://github.com/openresty/echo-nginx-module#compatibility
去 release 下载最新的安装包,并解压.
在配置 Nginx 时用: ./configure --add-module=/你的解压路径
,并编译安装,如果是重新编译安装可参考: 重新编译安装
#使用
只是研究了一些常用的
#echo - 输出字符
- 语法:
echo [options] <string>...
- 默认值:
no
# 简单的hello,world!
server {
location = /api/hello {
echo "hello,world!";
}
}
默认echo会自动换行,不需要换行可以: echo -n xxx;
;
#echo_before_body,echo_after_body - 页面前、后插入内容
- 语法:
echo_before_body [options] [argument]...
- 默认值:
no
#echo_sleep - 请求等待
- 语法:
echo_sleep <seconds>
- 默认值:
no
#echo_location_async,echo_location - 请求指定路径
- 语法:
echo_location_async <location> [<url_args>]
- 默认值:
no
异步跟同步的区别是:
- 异步会并行的去请求
- 同步等待当前请求结束才会往下执行
下面这个整个时间为2s,因为新路径最大是2s:
下面这个整个时间为3s,因为需要等待/sub1
完成才进入/sub2
:
可以通过第二个参数传querystring
: echo_location_async /sub 'foo=Foo&bar=Bar';
#echo_foreach_split - 分隔循环
- 语法:
echo_foreach_split <delimiter> <string>
上面配置当访问: /split?list=cat,dog,mouse
时会输出:
$arg_list
是对应$args.list
那么配置全echo_location_async
可以做成nginx-combo
服务了,如:
访问: /api/combo?/a.js,/b.js
,需要注意的是文件的路径必须以/
开始,因为匹配的location
,当然真的 nginx-combo
服务请看: nginx-http-concat
其他变量请去官网查看~