在 Ubuntu 14.04.4 LTS 上使用 HHVM(HipHop VM 3.14.1) 和 Nginx(nginx/1.10.1)
我尝试在我的虚拟主机中启用 HTTP/2,如下所示
server {
listen 443 ssl http2 default_server;
listen [::]:443 ssl http2 default_server;
root /var/www/mydomain;
index index.html index.htm index.php;
server_name mydomain.com;
ssl_certificate /etc/nginx/ssl/www_mydomain_com.pem;
ssl_certificate_key /etc/nginx/ssl/server.key;
access_log /var/log/nginx/localhost.laravel-access.log;
error_log /var/log/nginx/locahost.laravel-error.log error;
charset utf-8;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location = /favicon.ico { log_not_found off; access_log off; }
location = /robots.txt { log_not_found off; access_log off; }
error_page 404 /index.php;
include hhvm.conf; # The HHVM Magic Here
# Deny .htaccess file access
location ~ /\.ht {
deny all;
}
#Add Expires headers
location ~* \.(?:ico|css|js|gif|jpe?g|png|jpg|woff|woff2)$ {
expires 30d;
add_header Pragma public;
add_header Cache-Control "public";
}
}
server {
listen 80;
listen [::]:80;
server_name mydomain.com;
return 301 https://$server_name$request_uri;
}
但是,当我尝试检查HTTP/2 测试,我总是得到
否!mydomain.com 不支持 HTTP/2.0。支持的协议:http/1.1
不支持 ALPN。
编辑
$ nginx -V 如下所示
nginx version: nginx/1.10.1
built with OpenSSL 1.0.1f 6 Jan 2014
TLS SNI support enabled
configure arguments: --with-cc-opt='-g -O2 -fPIE -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2' --with-ld-opt='-Wl,-Bsymbolic-functions -fPIE -pie -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 --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_addition_module --with-http_dav_module --with-http_geoip_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_image_filter_module --with-http_v2_module --with-http_sub_module --with-http_xslt_module --with-stream --with-stream_ssl_module --with-mail --with-mail_ssl_module --with-threads --add-module=/build/nginx-abUnII/nginx-1.10.1/debian/modules/nginx-auth-pam --add-module=/build/nginx-abUnII/nginx-1.10.1/debian/modules/nginx-dav-ext-module --add-module=/build/nginx-abUnII/nginx-1.10.1/debian/modules/nginx-echo --add-module=/build/nginx-abUnII/nginx-1.10.1/debian/modules/nginx-upstream-fair --add-module=/build/nginx-abUnII/nginx-1.10.1/debian/modules/ngx_http_substitutions_filter_module
如何启用 HTTP/2?
答案1
嗯,您收到的错误信息非常明显:
不支持 ALPN。
应用层协议协商,又称 ALPN是用于应用层协议协商的传输层安全性 (TLS) 扩展。ALPN 允许应用层协商应通过安全连接执行哪种协议,以避免额外的往返,并且独立于应用层协议。HTTP/2 使用它。此外,HTTP/2(据我所知)也需要它。
/ 使用 支持 ALPN openssl => 1.0.2
。根据 的输出nginx -V
,您的nginx
是使用 构建的òpenssl 1.0.1f
,因此这无法也不会起作用。要启用(和使用)HTTP/2,您必须运行更现代的 版本nginx
。最近,我解释了一种实现此目的的方法这里。(但请不要复制/粘贴此内容,这不起作用,因为它涉及Debian
。)