# apt-get install -y lua5.1 liblua5.1-0 liblua5.1-0-dev 1. 2. 3. 4. 补充:安装模块:stream-lua-nginx-module出现的错误信息: make[1]: *** [objs/addon/src/ngx_stream_lua_socket_tcp.o] Error 1 1. 解决办法: apt-get install lua-socket 三、下载库 当前目录:/home/www 目录下面 2、...
And the ngx_tcp_lua module is very useful in fast implement your own service. Patch log.c, ngx_http_log_module.c, add the command nlog,access_nlog to send error_log,access_log to log server with udp. tcp_module for customized stream protocol on tcp, support ssl. example, tcp/ngx_...
如果想使用 TCP 通信,可以使用与 Lua API 兼容的ngx_stream_lua 2. 使用场景 使用Lua 处理或混合 nginx 上游的各种输出; 在请求到达 nginx 上游之前,使用 Lua 进行复杂的访问控制,安全检查; 使用Lua 操作请求的响应头; 从外部存储(redis、memcached、mysql...)获取信息来动态决定访问哪一个上游; 以非...
Embed the power of Lua into NGINX TCP/UDP servers. Contribute to openresty/stream-lua-nginx-module development by creating an account on GitHub.
51CTO博客已为您找到关于ngx_stream_lua的相关内容,包含IT学习相关文档代码介绍、相关教程视频课程,以及ngx_stream_lua问答内容。更多ngx_stream_lua相关解答可以来51CTO博客参与分享和学习,帮助广大IT技术人实现成长和进步。
laozi2 / nginx-stream-lua-module Public Notifications You must be signed in to change notification settings Fork 7 Star 111 Code Issues Pull requests Actions Projects Wiki Security Insights Commit Permalink ngx.nlog,module Browse files Browse the repository at this point in the history...
基于OpenResty(ngx_lua)的长连接推送服务器 最近实现一个二维码扫描登录的功能,当用户用移动设备扫描PC端页面的二维码之后,移动设备通过常规HTTP短连接向服务器获取认证数据,认证通过后,服务器向PC浏览器主动推送帐号相关信息以完成PC端页面的登录。 服务器主动向浏览器推送数据,基本上就是ajax轮询、iframe stream、...
服务器主动向浏览器推送数据,基本上就是ajax轮询、iframe stream、websocket等等,可以参见《Comet (web技术)》 推送服务器有很多种,当然用强大稳定又顺手的nginx了。 nginx相关的推送插件模块有nginx-push-stream-module、nginx_http_push_module,但是很遗憾,可配置不可编程。又到我们的主角OpenResty(OpenResty (aka. ...
https://github.com/openresty/lua-nginx-module#installation e.准备 cd/root/ngx_lua 1.Lua wgethttp://www.lua.org/ftp/lua-5.3.4.tar.gz tarzxf lua-5.3.4.tar.gz cdlua-5.3.4 makelinux test cd.. 2.LuaJIT2.1 wgethttp://luajit.org/download/LuaJIT-2.1.0-beta3.tar.gz ...
---与 ngx.re.match 类似但只返回匹配结果子字符串的开始索引 (from) 和结束索引 (to)。返回的索引值是基于 1 的,可以直接被用于 Lua 的 string.sub API 函数来获取匹配结果子串。---当出现任何错误时 (例如错误的正则表达式或任何 PCRE 运行时错误),这个 API 函数返回两个 nil 以及一个描述错误的的字符...