有人可以向我解释如何在 Debian 10 上安装 Nginx 1.21.3 吗?
太感谢了
答案1
以下是安装最新 Nginx 1.21.3 版本的方法
当前版本
Nginx 1.21.3
OpenSSL 3.0.0
全面支持操作系统
(LTS) Debian 9 Stretch
(LTS) Debian 10 Buster
(LTS) Debian 11 Bullseye
(LTS) Ubuntu 18.04 Bionic
(LTS) Ubuntu 20.04 Focal
通过 DEB 安装
apt install apt-transport-https lsb-release ca-certificates curl gnupg -y
curl https://mirror-cdn.xtom.com/sb/nginx/public.key | apt-key add -
echo "deb https://mirror-cdn.xtom.com/sb/nginx/ $(lsb_release -sc) main" > /etc/apt/sources.list.d/sb-nginx.list
apt update
apt install nginx-extras -y
特征
包含 Debian / Ubuntu 官方版本的所有内容,并添加了以下 nginx 模块以提供完整版和附加版:
ngx_brotli
ngx_http_geoip2_module
ngx_http_ipdb_module
Statically built with OpenSSL 3.0.0, so you can use TLS 1.3 even on distributions that don't have OpenSSL .
版本信息:
nginx 版本:nginx/1.21.3 使用 OpenSSL 3.0.0 构建于 2021 年 9 月 7 日 TLS SNI 支持已启用配置参数:--with-cc-opt='-g -O2 -ffile-prefix-map=/build/nginx=。 -fstack-protector-strong -Wformat -Werror=format-security -fPIC -Wdate-time -D_FORTIFY_SOURCE=2' --with-ld-opt='-Wl,-z,relro -Wl,-z,now -fPIC' --with-openssl=/build/nginx/../openssl --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-debug --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_flv_module --with-http_geoip_module=dynamic --with-http_gunzip_module --with-http_gzip_static_module --with-http_image_filter_module=dynamic --with-http_mp4_module --with-http_perl_module=dynamic --使用-http_random_index_module --使用-http_secure_link_module --使用-http_sub_module --使用-http_xslt_module=dynamic --使用-mail=dynamic --使用-mail_ssl_module --使用-stream=dynamic --使用-stream_geoip_module=dynamic --使用-stream_ssl_module --使用-stream_ssl_preread_module --add-module=/build/nginx/sb-modules/ngx_brotli --add-dynamic-module=/build/nginx/debian/modules/http-headers-more-filter --add-dynamic-module=/build/nginx/debian/modules/http-auth-pam --add-dynamic-module=/build/nginx/debian/modules/http-cache-purge --add-dynamic-module=/build/nginx/debian/modules/http-dav-ext --add-dynamic-module=/build/nginx/debian/modules/http-ndk --添加动态模块=/build/nginx/debian/modules/http-echo --添加动态模块=/build/nginx/debian/modules/http-fancyindex --添加动态模块=/build/nginx/debian/modules/http-geoip2 --添加动态模块=/build/nginx/sb-modules/ngx_http_ipdb_module --添加动态模块=/build/nginx/debian/modules/nchan --添加动态模块=/build/nginx/debian/modules/http-lua --添加动态模块=/build/nginx/debian/modules/rtmp --添加动态模块=/build/nginx/debian/modules/http-uploadprogress --添加动态模块=/build/nginx/debian/modules/http-upstream-fair --添加动态模块=/build/nginx/debian/modules/http-subs-filter
答案2
桑德拉!谷歌说,你应该尝试以下教程: https://www.digitalocean.com/community/tutorials/how-to-install-nginx-on-debian-10
;)