stream-lua-nginx-module icon indicating copy to clipboard operation
stream-lua-nginx-module copied to clipboard

Embed the power of Lua into NGINX TCP/UDP servers

Results 47 stream-lua-nginx-module issues
Sort by recently updated
recently updated
newest added

wget https://github.com/openresty/luajit2/archive/v2.1-20200102.tar.gz tar xvf v2.1-20200102.tar.gz make PREFIX=/usr/local/luajit make install PREFIX=/usr/local/luajit export LUAJIT_LIB=/usr/local/luajit/lib export LUAJIT_INC=/usr/local/luajit/include/luajit-2.1 # Here we assume Nginx is to be installed under /opt/nginx/. ./configure --prefix=/usr/local/openresty \ --with-ld-opt="-Wl,-rpath,/usr/local/luajit/lib" \...

globally shared dict instance - accesable from both http and stream contexts

Hello! I have a compilation error! /openresty-1.13.6.1/stream-lua-nginx-module/src/ngx_stream_lua_util.h:36:5: error: unknown type name ‘ngx_stream_lua_ffi_str_t’ ngx_stream_lua_ffi_str_t value;

Hello! The worker process CPU usage could be 100% if we use the following configuration pattern: ```nginx stream { server { listen 3105 reuseport; lua_check_client_abort on; # must be enabled...

Now tcpsock:receive now support two pattern '_a' and '_l'(default '*l' if pattern is nil), it's quite useful in text-based protocol or open binary protocol(eg. Mysql). But to deal with non-public...

I tried following some combination of [openresty/README-windows.md](https://github.com/openresty/openresty/blob/master/doc/README-windows.md) and [stream-lua-nginx-module/README.md](https://github.com/openresty/stream-lua-nginx-module/blob/master/README.md) to build this module (before discovering the the RC version of openresty with support for `ssl_certificate_by_lua_block`). While I no longer need...

hi ,i want to use ocsp to check the certificate , when the stream mode can support?

Hello i am trying in vain to implemant a simple UDP server with ngx-lua-stream module attempt to call field 'udp_socket' in ngx.req.udp_socket gives an error (nil value) i am using...

## Description: OpenResty 1.25.3.1 was intended to support PCRE2, but there is a bug in the stream-lua-nginx-module preventing it from building with PCRE2. While the problem has been addressed in...

can stream mod realize subrequest interface? how can i do it