lua-nginx-module
lua-nginx-module copied to clipboard
why access_by_lua at the end of access phase
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