使用 ngx_stream_log_module 编译 nginx 1.16.1

使用 ngx_stream_log_module 编译 nginx 1.16.1

我想编译包含 的 Nginx 1.161.1 ngx_stream_log_module,所以我这样做:

./configure --sbin-path=/usr/local/nginx/nginx \
--conf-path=/usr/local/nginx/nginx.conf \
--pid-path=/usr/local/nginx/nginx.pid \
--with-pcre=../pcre-8.43 \
--with-zlib=../zlib-1.2.11 \
--with-http_ssl_module \
--with-http_auth_request_module \
--with-http_v2_module \
--with-http_realip_module \
--with-http_flv_module \
--with-http_gzip_static_module \
--with-stream \
--with-threads \
--with-mail=dynamic \
--with-stream=dynamic \
--with-compat \
--with-stream_log_module=dynamic

但我有这个错误:

./configure: error: invalid option "--with-stream_log_module=dynamic"

编译和制作时--with-stream_log_module=dynamic没有错误,但只安装了ngx_stream_module.so/usr/local/nginx/modules/ 问题是什么?谢谢。

相关内容