从源代码构建 nginx 错误

从源代码构建 nginx 错误

我尝试从源代码构建和安装 nginx,一切似乎都正常,但当我尝试在构建之前配置 nginx 源时,我收到错误。我使用的是 ubuntu 18.04.1 LT,我的配置命令

./configure --prefix=/etc/nginx \
        --sbin-path=/usr/sbin/nginx \
        --conf-path=/etc/nginx/nginx.conf \
        --error-log-path=/var/log/nginx/error.log \
        --pid-path=/var/run/nginx.pid \
        --lock-path=/var/run/nginx.lock \
        --user=nginx \
        --group=nginx \
        --build=Ubuntu \
        --builddir=nginx-1.9.9 \
        --with-select_module \
        --with-poll_module \
        --with-threads \
        --with-file-aio \
        --with-http_ssl_module \
        --with-http_v2_module \
        --with-http_realip_module \
        --with-http_addition_module \
        --with-http_xslt_module=dynamic \
        --with-http_image_filter_module=dynamic \
        --with-http_geoip_module=dynamic \
        --with-http_sub_module \
        --with-http_dav_module \
        --with-http_flv_module \
        --with-http_mp4_module \
        --with-http_gunzip_module \
        --with-http_gzip_static_module \
        --with-http_auth_request_module \
        --with-http_random_index_module \
        --with-http_secure_link_module \
        --with-http_degradation_module \
        --with-http_slice_module \
        --with-http_stub_status_module \
        --with-http_perl_module=dynamic \
        --with-perl_modules_path=/usr/share/perl/5.26.1 \
        --with-perl=/usr/bin/perl \
        --http-log-path=/var/log/nginx/access.log \
        --http-client-body-temp-path=/var/cache/nginx/client_temp \
        --http-proxy-temp-path=/var/cache/nginx/proxy_temp \
        --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp \
        --http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp \
        --http-scgi-temp-path=/var/cache/nginx/scgi_temp \
        --with-mail=dynamic \
        --with-mail_ssl_module \
        --with-stream=dynamic \
        --with-stream_ssl_module \
        --with-stream_realip_module \
        --with-stream_geoip_module=dynamic \
        --with-stream_ssl_preread_module \
        --with-compat \
        --with-pcre=../pcre-8.42 \
        --with-pcre-jit \
        --with-zlib=../zlib-1.2.11 \
        --with-openssl=../openssl-1.1.0h \
        --with-openssl-opt=no-nextprotoneg \
        --with-debug \
        --modules-path=/usr/lib/nginx/modules \

我得到的错误是./configure: error: invalid option "--with-http_xslt_module=dynamic"

答案1

--builddir=nginx-1.9.9 \

这表明你正在使用古老的NGINX 版本。使用较新版本的 NGINX 源代码,因为 NGINX 1.9.x没有对 XSLT 模块的动态模块支持与现在相比,这种方式确实“稳定”。这也许可以解释为什么您会收到有关无效选项的投诉。

当前 Mainline 版本是 1.15.x,当前 Stable 版本是 1.14.x。使用其中一个版本,该参数应该可以正常工作。(您绝对不应该尝试使用 1.9.9 来构建动态模块,您应该始终使用您能获得的最先进的 NGINX)

相关内容