📜  nginx 列出加载的模块 (1)

📅  最后修改于: 2023-12-03 15:33:07.018000             🧑  作者: Mango

Nginx 列出加载的模块

Nginx 是一个高性能、高度可扩展的 Web 服务器软件,常被用作反向代理服务器、负载均衡器、HTTP 缓存等。

在 Nginx 中,模块管理是一个非常重要的话题,因为它决定了你的 Nginx 是否具有某些可用的功能,以及你需要什么样的模块来完成你的工作。因此,在这篇文章中,我们会介绍如何列出 Nginx 加载的模块以及如何加载它们。

列出加载的模块

在 Linux 中,你可以使用以下命令来查看 Nginx 加载的模块:

nginx -V

这个命令会输出 Nginx 的版本、编译的参数以及加载的模块。例如:

nginx version: nginx/1.20.1
built by gcc 10.2.0 (Ubuntu 10.2.0-13ubuntu1~20.04)
built with OpenSSL 1.1.1f  31 Mar 2020 (running with OpenSSL 1.1.1k  25 Mar 2021)
TLS SNI support enabled
configure arguments: --with-cc-opt='-g -O2 -fdebug-prefix-map=/build/nginx-NgIsEV/nginx-1.20.1=. -fstack-protector-strong -Wformat -Werror=format-security -fPIC -Wdate-time -D_FORTIFY_SOURCE=2' --with-ld-opt='-Wl,-Bsymbolic-functions -fPIC -Wl,-z,relro -Wl,-z,now' --prefix=/usr/share/nginx --conf-path=/etc/nginx/nginx.conf --http-log-path=/var/log/nginx/access.log --error-log-path=/var/log/nginx/error.log --lock-path=/var/lock/nginx.lock --pid-path=/run/nginx.pid --modules-path=/usr/lib/nginx/modules --http-client-body-temp-path=/var/lib/nginx/body --http-fastcgi-temp-path=/var/lib/nginx/fastcgi --http-proxy-temp-path=/var/lib/nginx/proxy --http-scgi-temp-path=/var/lib/nginx/scgi --http-uwsgi-temp-path=/var/lib/nginx/uwsgi --with-compat --with-file-aio --with-threads --with-http_addition_module --with-http_auth_request_module --with-http_dav_module --with-http_flv_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_mp4_module --with-http_random_index_module --with-http_realip_module --with-http_slice_module --with-http_ssl_module --with-http_sub_module --with-http_stub_status_module --with-http_v2_module --with-mail --with-mail_ssl_module --with-stream --with-stream_realip_module --with-stream_ssl_module --with-stream_ssl_preread_module

我们可以看到它加载的模块有:

  • http_addition_module: 在本文档中提供添加包内容模块。
  • http_auth_request_module: 在本文档中提供基于授权请求方式访问的模块。
  • http_dav_module: 在本文档中提供WebDAV代理模块。
  • http_flv_module: 在本文档中提供FLV的伪流模块。
  • http_gunzip_module: 在本文档中提供自动解压缩模块。
  • http_gzip_static_module: 在本文档中提供对预压缩的文件的自动解压缩模块。
  • http_mp4_module: 在本文档中提供MP4的伪流模块。
  • http_random_index_module: 在本文档中提供随机索引模块。
  • http_realip_module: 在本文档中提供浏览用户IP地址模块。
  • http_slice_module: 在本文档中提供文件切片上传模块。
  • http_ssl_module: 在本文档中提供HTTPS支持模块。
  • http_stub_status_module: 在本文档中提供查看Nginx状态的模块。
  • http_sub_module: 在本文档中提供内容替换模块。
  • http_v2_module: 在本文档中提供HTTP2协议支持模块。
  • mail_ssl_module: 在本文档中提供SMTP/POP3/IMAP4的SSL支持模块。
  • stream_realip_module: 在本文档中提供流用户IP地址模块。
  • stream_ssl_module: 在本文档中提供TLS/SSL支持模块。
  • stream_ssl_preread_module: 在本文档中提供预读取TLS/SSL握手包模块。
加载模块

加载模块是一件非常简单的事情。我们可以在 Nginx 的 configure 命令中添加 --add-module=path/to/module 参数,其中 path/to/module 是模块所在的路径。然后重新编译和安装 Nginx 即可。

例如,我们想要加载 ngx_http_geoip_module 模块。该模块允许你根据用户的 IP 地址对请求进行路由和处理。我们可以在执行 configure 命令时添加 --add-module=path/to/ngx_http_geoip_module 参数,然后重新编译和安装 nginx。

./configure --add-module=path/to/ngx_http_geoip_module
make
sudo make install

在重新启动 Nginx 后,该模块将被自动加载并可用。

总结

我们已经介绍了如何列出 Nginx 加载的模块以及如何加载它们。这对于管理或进行 Nginx 开发的人来说都是非常重要的信息。在使用 Nginx 时,请确保你的模块已正确加载,并将其加入到你的配置中,以便发挥其功能。