我使用两个不同的证书为两个TLS虚拟主机’example.one’和’example.two’配置了Nginx.
我需要为第一个设置TLS1.0,为第二个设置TLS1.2.但是,第二个(example.two)配置忽略ssl_protocols指令并从第一个服务器指令获取ssl_procolols.
因此,两个服务器指令都使用第一个配置的ssl_protocols指令.
server {
listen 443 default_server ssl spdy;
server_name example.one;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_certificate /certs/cert-for-example.one.pem;
ssl_certificate_key /certs/privkey-for-example.one.pem;
# another ssl_* directives ...
}
server {
listen 443 ssl spdy;
server_name example.two;
ssl_protocols TLSv1.2;
ssl_certificate /certs/cert-for-example.two.pem;
ssl_certificate_key /certs/privkey-for-example.two.pem;
# another ssl_* directives ...
}
我不想使用SSL3,因此TLS SNI应该可以正常工作.而且我不关心没有TLS SNI支持的客户.
只有相关的信息,我发现是here.它说,Openssl负责.
难道我做错了什么 ?或者有解决方法吗?
(除了服务器指令的单独IP地址,但我不想回到石器时代)
我在Debian Wheezy上使用Nginx / 1.6.2,OpenSSL 1.0.1e.
最佳答案
这似乎是Nginx中的一个错误.我也在https://serverfault.com/a/827794/318927发布了这个答案
原文链接:https://www.f2er.com/nginx/434508.html它始终只使用第一个服务器块中的ssl_protocols指令并忽略任何后续服务器块.在我的情况下,我有许多虚拟服务器在同一个实例上运行,所以我使用Nginx -T命令显示完整的组合配置,以确定哪个服务器块是“第一个”,因为我将它拆分为许多单独的配置文件.
在撰写本文时,我正在尝试使用ondrej / Nginx PPA安装Nginx的Ubuntu 14.04.5.
具体来说,我正在运行使用OpenSSL 1.0.2j构建的Nginx 1.10.2.
Nginx version: Nginx/1.10.2
built with OpenSSL 1.0.2j 26 Sep 2016
TLS SNI support enabled
configure arguments: --with-cc-opt='-g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2' --with-ld-opt='-Wl,-Bsymbolic-functions -Wl,-z,relro -Wl,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-debug --with-pcre-jit --with-ipv6 --with-http_ssl_module --with-http_stub_status_module --with-http_realip_module --with-http_auth_request_module --with-http_v2_module --with-http_spdy_module --with-http_dav_module --with-http_slice_module --with-threads --with-http_addition_module --with-http_geoip_module=dynamic --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 --add-dynamic-module=/build/Nginx-8xB1_y/Nginx-1.10.2/debian/modules/Nginx-auth-pam --add-dynamic-module=/build/Nginx-8xB1_y/Nginx-1.10.2/debian/modules/Nginx-dav-ext-module --add-dynamic-module=/build/Nginx-8xB1_y/Nginx-1.10.2/debian/modules/Nginx-echo --add-dynamic-module=/build/Nginx-8xB1_y/Nginx-1.10.2/debian/modules/Nginx-upstream-fair --add-dynamic-module=/build/Nginx-8xB1_y/Nginx-1.10.2/debian/modules/ngx_http_substitutions_filter_module
作为一种解决方法,我建议尝试Anton的答案:
https://stackoverflow.com/a/37511119/1446479