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

why access_by_lua at the end of access phase

Open oathupdate opened this issue 5 years ago • 2 comments

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 return NGX_OK, so the access_phase of B will be skiped, how can i fix this case

oathupdate avatar Feb 07 '20 08:02 oathupdate