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

Embed the Power of Lua into NGINX HTTP servers

Results 196 lua-nginx-module issues
Sort by recently updated
recently updated
newest added
trafficstars

I hereby granted the copyright of the changes in this pull request to the authors of this lua-nginx-module project.

There's already an option to validate server TLS certificate using `lua_ssl_trusted_certificate`. It would be nice if we could provide client TLS certificate, in the same way as `ngx_http_proxy` module is...

I build nginx 1.20.1 with master lua-nginx-module and have luajit 2.1 built in, the nginx image with lua builds fine however I get following error while running nginx symbol lookup...

* Nginx 1.23.1-1.el9 On RedHat EL 9. Build RPM from SRPM at nginx.org which goes OK. Install is OK but if I start nginx ----------------------------------%

Compile failed. Nginx 1.21.5: now nginx is built with the PCRE2 library by default. ``` /tmp/nginx.lJpu0R.ltrans10.ltrans.o::function ngx_http_lua_log_by_chunk: error: undefined reference to 'pcre_malloc' /tmp/nginx.lJpu0R.ltrans10.ltrans.o::function ngx_http_lua_log_by_chunk: error: undefined reference to 'pcre_free' /tmp/nginx.lJpu0R.ltrans10.ltrans.o::function...

Hi! I perform a load testing for my web-server. I use `wrk` since I find it more suitable for loading up the network and the target web-server with a traffic,...

**config:** location =/version { default_type 'text/plain'; content_by_lua_file /usr/local/lmrs/lua/api/version.lua; log_by_lua ' ngx.log(ngx.ERR,"header: ", require"cjson".encode(ngx.resp.get_headers())) '; } **request:** curl -i "http://127.0.0.1:8088/version" HTTP/1.1 200 OK Server: nginx/1.12.2 Date: Tue, 10 Sep 2019 13:17:46...

I try to add a new API about the channel (Codes are done, ready for pull request). It has the same characteristics as golang channel. You could create a new...

As document says, we are not allowed to use any `ngx_lua` feature in `run_worker_thread` calls. I guess it's because thread has no request context to do those calls, but is...

Hi, I have this scenario where I am calculating the latency value using the value in nignx response header. I want to use this value to calculate my SLO in...