对码当歌,猿生几何?

nginx支持http2

http2特点

  1. 二进制分帧(Binary Format)- http2.0的基石

  2. 多路复用 (Multiplexing) / 连接共享

  3. 头部压缩(Header Compression)

  4. 请求优先级(Request Priorities)

  5. 服务端推送(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