为什么我的服务器不支持ALPN?


11

我目前正在使用NGINX 1.11.9和openssl 1.0.2g运行Ubuntu 16.04.1 LTS服务器。

根据我阅读的所有内容,这些版本应该支持ALPN,但是当我在KeyCDN的HTTP / 2测试工具上运行测试时,我得到“不支持ALPN”keycdn测试报告的屏幕截图

当我执行时echo | openssl s_client -alpn h2 -connect example.com:443 | grep ALPN,我得到:

depth=3 C = SE, O = AddTrust AB, OU = AddTrust External TTP Network, CN = AddTrust External CA Root
verify return:1
depth=2 C = GB, ST = Greater Manchester, L = Salford, O = COMODO CA Limited, CN = COMODO RSA Certification Authority
verify return:1
depth=1 C = GB, ST = Greater Manchester, L = Salford, O = COMODO CA Limited, CN = COMODO RSA Domain Validation Secure Server CA
verify return:1
depth=0 OU = Domain Control Validated, OU = EssentialSSL Wildcard, CN = *.example.com
verify return:1
No ALPN negotiated
DONE

未启用ALPN将禁用HTTP2。如何启用ALPN?

编辑

nginx -V 显示:

nginx version: nginx/1.11.9
built by gcc 4.8.4 (Ubuntu 4.8.4-2ubuntu1~14.04.3)
built with OpenSSL 1.0.1f 6 Jan 2014 (running with OpenSSL 1.0.2g  1 Mar 2016)
TLS SNI support enabled
configure arguments: --prefix=/etc/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=/var/run/nginx.pid --lock-path=/var/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-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_secure_link_module --with-http_slice_module --with-http_ssl_module --with-http_stub_status_module --with-http_sub_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 --with-cc-opt='-g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fPIC' --with-ld-opt='-Wl,-Bsymbolic-functions -Wl,-z,relro -Wl,-z,now -Wl,--as-needed -pie'

编辑#2

openssl version -a 输出:

OpenSSL 1.0.2h  3 May 2016
built on: reproducible build, date unspecified
platform: linux-x86_64
options:  bn(64,64) rc4(16x,int) des(idx,cisc,16,int) idea(int) blowfish(idx)
compiler: gcc -I. -I.. -I../include  -DOPENSSL_THREADS -D_REENTRANT -DDSO_DLFCN -DHAVE_DLFCN_H -Wa,--noexecstack -m64 -DL_ENDIAN -O3 -Wall -DOPENSSL_IA32_SSE2 -DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_MONT5 -DOPENSSL_BN_ASM_GF2m -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DMD5_ASM -DAES_ASM -DVPAES_ASM -DBSAES_ASM -DWHIRLPOOL_ASM -DGHASH_ASM -DECP_NISTZ256_ASM
OPENSSLDIR: "/usr/local/ssl"

1
built with OpenSSL 1.0.1f-猜猜这就是答案
Alexey 10

您从哪里获得Nginx的?可能您应该坚持使用官方ubuntu回购协议中的一个。它将是1.10.0,但是至少它将针对正确版本的openssl
Alexey

NGINX随附了我从主机Digitalocean安装的Unbuntu发行版,这也可能是由于我从14.04升级到16.04所致。看来我需要以某种方式重建NGINX才能解决此问题。
Godwin'2

您还可以添加的输出openssl version -a,以便我们查看您的OpenSSL是否使用任何意外的标志/选项构建吗?
Castaglia'2

@Castaglia,当然,我更新了问题。
Godwin

Answers:


11

正如@AlexyTen指出的,根本原因是,尽管我安装了OpenSSL 1.0.2g,但NGINX需要使用OpenSSL来构建,而它是使用不支持ALPN的1.0.1f来构建的。

NGINX需要使用OpenSSL 1.0.2或更高版本进行重建,然后重新安装。我在线上找到了一些教程,但是因为我使用的是Digital Ocean服务器,所以我使用了此帮助主题来为我解决问题:https : //www.digitalocean.com/community/questions/how-to-get-already-已安装nginx以使用openssl-1-0-2-for-alpn

我首先需要安装一些新的库:

apt-get install libgeoip-dev libgd2-xpm-dev libperl-dev

然后我只运行了这个脚本:https : //gist.github.com/AJMaxwell/f6793605068813aae888216b02364d85

我重新开始使用sudo shutdown -r nownginx -V再次运行。这次给了我:

nginx version: nginx/1.11.0
built by gcc 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.4)
built with OpenSSL 1.0.2h  3 May 2016
TLS SNI support enabled
configure arguments: --prefix=/etc/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=/var/run/nginx.pid --lock-path=/var/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-http_slice_module --with-mail --with-mail_ssl_module --with-file-aio --with-ipv6 --with-http_v2_module --with-openssl=/root/openssl-1.0.2h --add-module=/root/ngx_pagespeed-release-1.11.33.2-beta

我还再次运行了keycdn的http2测试,它通过了。


2

我创建了一个bash脚本,该脚本会自动在Debian / Ubuntu,RHEL / CentOS和其他发行版上使用OpenSSL下载,编译和安装Nginx。生成的二进制文件与通过其官方存储库分发Nginx的二进制文件完全相同,只是它带有最新版本的OpenSSL。

该脚本不会修改OpenSSL安装,只会修改Nginx二进制文件。如果您不想依赖由非官方来源构建和分发的软件包,那么这是一个不错的选择。

https://github.com/victordzmr/nginx-compiler


为什么不依靠自己构建的软件包而不安装未跟踪的二进制文件呢?
小鸡

1
@chicks这是一个构建Nginx的脚本,而不是二进制文件。从未知来源下载二进制文件可能很危险,因此我创建了它。
维克多·迪亚兹

1

安装nginx ppa,它将支持ALPN:

sudo add-apt-repository ppa:nginx/stable
sudo apt update
sudo apt dist-upgrade -y

1
更好,hda-me/nginx-stable因此您可以运行brotli和动态模块
Jacob Evans
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.