在我的案例中,默认的 NGINX 配置不包括 SSI 模块(不要与 SSL 混淆)
# nginx -V
nginx version: nginx/1.18.0 (Ubuntu)
built with OpenSSL 1.1.1f 31 Mar 2020
TLS SNI support enabled
configure arguments: --with-cc-opt='-g -O2
-fdebug-prefix-map=/build/nginx-lUTckl/nginx-1.18.0=.
-fstack-protector-strong
-Wformat
-Werror=format-security
-fPIC
-Wdate-time
-D_FORTIFY_SOURCE=2'
--with-ld-opt='-Wl,-Bsymbolic-functions -Wl,-z,relro -Wl,-z,now -fPIC'
--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-debug
--with-compat
--with-pcre-jit
--with-http_ssl_module
--with-http_stub_status_module
--with-http_realip_module
--with-http_auth_request_module
--with-http_v2_module
--with-http_dav_module
--with-http_slice_module
--with-threads
--with-http_addition_module
--with-http_gunzip_module
--with-http_gzip_static_module
--with-http_image_filter_module=dynamic
--with-http_sub_module
--with-http_xslt_module=dynamic
--with-stream=dynamic
--with-stream_ssl_module
--with-mail=dynamic
--with-mail_ssl_module
ngx_http_ssi_module ( http://nginx.org/en/docs/http/ngx_http_ssi_module.html ) 丢失。如何安装?
在发布 NGINX 1.18.0(包括 Jammy 22.04)的 Ubuntu 版本中,您需要安装
nginx-full
包的风格。只需执行即可sudo apt install nginx
安装nginx-core
,其中包含一组非常有限的第三方模块,并使大多数可选模块处于禁用状态。您可以通过执行
sudo apt install nginx nginx-full
which will replacenginx-core
withnginx-full
和 install all thatnginx-full
contains in place of来做到这一点nginx-core
。您的配置应该不会/etc/nginx
受到影响,但是请确保在执行更改和切换之前备份。然后将出现 SSI 模块。
请注意,NGINX 文档声明“目前,受支持的 SSI 命令列表不完整。 ”,因此并非所有 SSI 命令都有效,或者不一定被记录或可用。(重点是我的,但这是您链接的文档的直接引用)