http2特点
二进制分帧(Binary Format)- http2.0的基石
多路复用 (Multiplexing) / 连接共享
头部压缩(Header Compression)
请求优先级(Request Priorities)
服务端推送(Server Push)
nginx如何升级http2.0协议
nginx服务器升级http2.0协议需要满足如下条件: 1、nginx版本高于1.9.5; 2、编译的版本需要加载 ssl模块和 http2模块。http2协议也基于ssl/tls协议。 重新编译命令如下 ./configure --prefix=/usr/local/nginx --with-http_ssl_module --with-http_v2_module
3、nginx.conf文件修改
listen 443 ssl http2;
4、重启nginx