OpenResty总结
- https://gist.github.com/tianyk/e50ba80444cd114962493589a9efd3fa
- http://openresty-reference.readthedocs.io/en/latest/Lua_Nginx_API
- http://www.londonlua.org/scripting_nginx_with_lua/slides.html
- https://github.com/iresty/nginx-lua-module-zh-wiki
###1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20.
├── bin
│ ├── openresty
├── COPYRIGHT
├── lua/ # 项目lua代码
│ └── auth.lua
├── luajit/ # luajit
├── lualib/ # lua 第三方模块
│ ├── nginx-jwt.lua
│ ├── ngx # ngx lua 模块
│ │ ├── balancer.lua
│ │ └── ...
│ └── resty # openresty 第三方模块
│ ├── memcached.lua
│ ├── ...
├── nginx/ # nginx
├── openssl/
├── pcre/
├── site/
└── zlib/
本站采用「署名 4.0 国际」进行许可。