如何查看nginx模块
时间: 2023-07-26 09:49:08 浏览: 258
Nginx模块开发入门
可以使用以下命令查看Nginx已经编译进去的模块:
```
nginx -V
```
执行该命令后,会输出Nginx的版本和已经编译进去的模块列表,例如:
```
nginx version: nginx/1.18.0
built by gcc 9.3.0 (Alpine 9.3.0)
built with OpenSSL 1.1.1g 21 Apr 2020
TLS SNI support enabled
configure arguments: --prefix=/usr/share/nginx --sbin-path=/usr/sbin/nginx --modules-path=/usr/lib/nginx/modules --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --pid-path=/run/nginx.pid --lock-path=/run/nginx.lock --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 --user=nginx --group=nginx --with-http_ssl_module --with-http_realip_module --with-http_addition_module --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_random_index_module --with-http_secure_link_module --with-http_stub_status_module --with-http_auth_request_module --with-http_xslt_module=dynamic --with-http_image_filter_module=dynamic --with-http_geoip_module=dynamic --with-http_perl_module=dynamic --with-threads --with-stream --with-stream_ssl_module --with-stream_ssl_preread_module --with-stream_realip_module --with-stream_geoip_module=dynamic --with-http_slice_module --with-mail --with-mail_ssl_module --with-compat --with-file-aio --with-http_v2_module --with-http_v3_module --add-dynamic-module=/usr/src/nginx/modules/ngx_http_geoip2_module --add-dynamic-module=/usr/src/nginx/modules/ngx_brotli --add-dynamic-module=/usr/src/nginx/modules/ngx_http_headers_more_filter_module --add-dynamic-module=/usr/src/nginx/modules/ngx_http_modsecurity_module --with-cc-opt='-Os -fomit-frame-pointer' --with-ld-opt=-Wl,--as-needed
```
其中,`--add-module`和`--add-dynamic-module`参数指定了动态模块的路径,而静态模块则直接在configure命令中指定。可以根据输出信息判断是否已经编译进去需要的模块。
阅读全文