lua-nginx-module
lua-nginx-module copied to clipboard
Embed the Power of Lua into NGINX HTTP servers
I hereby granted the copyright of the changes in this pull request to the authors of this lua-nginx-module project.
I hereby granted the copyright of the changes in this pull request to the authors of this lua-nginx-module project.
nginx: [emerg] dlopen() "/usr/local/src/nginx-1.26.1/objs/ngx_http_naxsi_module.so" failed (/usr/local/src/nginx-1.26.1/objs/ngx_http_naxsi_module.so: undefined symbol: pcre_exec) in /etc/nginx/nginx.conf:9
Some time ago, an issue was raised: #1921, followed by a subsequent pull request: #1954. The issue we aimed to address was selectively retrieving data from shared memory (shm) and...
# Description After I upgraded the production environment's Tengine 2.3.2 (Nginx 1.17.3) to OpenResty 1.24.4.2, some requests occasionally received a 499 error. I know this is usually because the client...
server { listen 80; server_name test.com; header_filter_by_lua_file my_header_filter.lua; location / { proxy_pass http://u1; } } if some mistake in my_header_filter.lua, the request just abort, and the $status log value is...
So the issue is well explained here [init_by_lua is no longer run in Nginx config test??](https://groups.google.com/g/openresty-en/c/YIZrVUa1ZKA) I need this feature as well and I consider it to be very important...
Hello, I've encountered an error which I understand the source to but unsure what's the best practice here. I have the following example module `respond.lua`: ```Lua local ngx = require...
nginx config nginx version: nginx/1.24.0 built by gcc 11.4.1 20230605 (Red Hat 11.4.1-2) (GCC) built with OpenSSL 3.0.7 1 Nov 2022 TLS SNI support enabled configure arguments: --prefix=/etc/nginx --with-ld-opt=-Wl,-rpath,/usr/local/lib --sbin-path=/usr/sbin/nginx...
https://github.com/openresty/lua-nginx-module/blob/master/src/ngx_http_lua_accessby.c#L368 `when rc==NGX_OK return NGX_OK; ` i have two modules HTTP_AUX_FILTER_MODULES module ngx-lua-module HTTP_MODULES B ./configure --add-module=ngx-lua-module --add-module=B then the access phase of ngx-lua-module will be run firstly. because ngx_http_lua_access_by_chunk...