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/ 감사해요.

관련 정보