我正在为我公司制作的电子商务网站实施http / 2。我在debian jessie上托管它,发现现在很容易从backports repo中获取nginx,它是针对openssl 1.0.2构建的,以支持ALPN(这些天来使用chrome是必要的)。
所以我升级了我的libssl然后升级了我的nginx。令我惊讶的是,即使我没有在配置中添加该关键字,nginx现在似乎也通过http2提供我的内容。 Chrome的开发工具会在网络标签的h2
列中显示protocol
。
通常我会对此感到高兴,但我想在http1.1和http2之间进行一些比较测量。如何强制它再次(临时)提供http1.1以进行测量?
修改:添加nginx -V
的输出以具体说明我的版本
$ nginx -V
nginx version: nginx/1.9.10
built with OpenSSL 1.0.2h 3 May 2016
TLS SNI support enabled
configure arguments: --with-cc-opt='-g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2' --with-ld-opt='-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-1.9.10/debian/modules/nginx-auth-pam --add-module=/build/nginx-1.9.10/debian/modules/nginx-dav-ext-module --add-module=/build/nginx-1.9.10/debian/modules/nginx-echo --add-module=/build/nginx-1.9.10/debian/modules/nginx-upstream-fair --add-module=/build/nginx-1.9.10/debian/modules/ngx_http_substitutions_filter_module
答案 0 :(得分:1)
http2参数(1.9.5)将端口配置为接受HTTP / 2连接。
因此,在此端口上配置的任何虚拟服务器都将接受HTTP / 2连接。如果要配置某些具有HTTP / 2但没有配置的主机,则必须使用不同的IP或端口。