Hi,
I am trying to compile openresty with https://github.com/alticelabs/nginx-log-zmq.
It seems compiling the module itself works, but it's just not available in nginx afterwards.
./configure --add-module=../nginx-log-zmq-master
make
make install
The logs show that compiling ZeroMW works:
adding module in /openresty-1.13.6.1/../nginx-log-zmq-master
checking for ZeroMQ library ... found
+ ngx_http_log_zmq_module was configured
[...]
However, when I run nginx with the directives from the zmq module, the following happens:
$ /usr/local/openresty/bin/openresty
> 2018/11/03 21:06:06 [emerg] 1#0: unknown directive "log_zmq_server" in /usr/local/openresty/nginx/conf/nginx.conf:13
The full lug output is available at
https://paste.ee/p/BCdf6
My full dockerfile is available at https://pastebin.com/raw/m67rVBzr
Thanks in advance, any suggestion is appreciated.
Luca