http/2.0 nginx配置

1、什么是HTTP 2.0

HTTP/2(超文本传输协议第2版,最初命名为HTTP 2.0),是HTTP协议的的第二个主要版本,使用于万维网。HTTP/2是HTTP协议自1999年HTTP 1.1发布后的首个更新,主要基于SPDY协议(是Google开发的基于TCP的应用层协议,用以最小化网络延迟,提升网络速度,优化用户的网络使用体验)。

2、与HTTP 1.1相比,主要区别包括

  • HTTP1.1默认使用长连接,可有效减少TCP的三次握手开销。
  • HTTP 1.1支持只发送header信息(不带任何body信息),如果服务器认为客户端有权限请求服务器,则返回100,否则返回401。客户端如果接受到100,才开始把请求body发送到服务器。这样当服务器返回401的时候,客户端就可以不用发送请求body了,节约了带宽。另外HTTP还支持传送内容的一部分。这样当客户端已经有一部分的资源后,只需要跟服务器请求另外的部分资源即可。这是支持文件断点续传的基础。
  • HTTP2.0使用多路复用技术(Multiplexing),多路复用:(一个域只要一个TCP连接)实现真正的并发请求,降低延时,提高了带宽的利用率
    “HTTP1.1在同一时间对于同一个域名的请求数量有限制,超过限制就会阻塞请求”。多路复用底层采用"增加二进制分帧层"的方法,使得不改变原来的语义、首部字段的情况下提高传输性能,降低延迟。
    二进制分帧将所有传输信息分割为更小的帧,用二进制进行编码,多个请求都在同一个TCP连接上完成,可以承载任意数量的双向数据流。HTTP/2更有效的使用TCP连接,得到性能上的提升。

配置的基本要求

需要openssl(版本必须在1.0.2e及以上)
nginx(版本必须在1.9.5及以上)

查看模块

nginx -V

通过上面命令查看nginx版本信息

nginx version: nginx/1.15.8
built by gcc 4.8.5 20150623 (Red Hat 4.8.5-36) (GCC) 
built with OpenSSL 1.0.2k-fips  26 Jan 2017
TLS SNI support enabled
configure arguments: --prefix=/etc/nginx --sbin-path=/usr/sbin/nginx --modules-path=/usr/lib64/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='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -fPIC' --with-ld-opt='-Wl,-z,relro -Wl,-z,now -pie'

可以查看出当前的nginx跟openssl版本,没有显示openssl版本的需要安装openssl
configure arguments 模块中如果存在 --with-http_v2_module,即已经拥有http2模块

拥有http2模块 修改nginx 配置即可(443端口需要配置https证书)

server {
    listen  443 ssl http2;
    #....

重启nginx

nginx安装http2 模块

如果按照过nginx 需要重新编译nginx

首先检查是否有openssl(版本要在1.0.2e及以上)

版本过低或者没有可以通过源码按照
在官网下载所需版本的openssl源码,并解压,进入目录

./config --prefix=xxx #安装目录
make
make install 

#把旧版的openssl重命名及设置软连接
mv /usr/bin/openssl /usr/bin/openssl.bak
mv /usr/include/openssl /usr/include/openssl.bak
#设置软连接指向刚编译好的新版本的openssl-1.1.0g

ln -s 安装目录/bin/openssl /usr/bin/openssl
ln -s 安装目录/include/openssl /usr/include/openssl

#查看版本
openssl  version -a

编译安装nginx

yum安装的nginx需要卸载后源码按照
源码安装的可以重新编译

下载nginx源码包 解压并进入目录

./configure  --with-http_ssl_module --with-http_stub_status_module --with-http_v2_module --with-http_gzip_static_module --with-http_sub_module --with-openssl=下载的openssl源码包路径

--with-http_ssl_module --with-http_v2_module 必须添加的模块
--with-openssl 填写openssl源码包路径
其http配置可选
其他模块和路径配置省略 按照需求添加

make
make install

安装完成后 配置conf中的网站解析,重启nginx

检测是否是http/2.0

谷歌f12 network中,在中间红框处右键 打开protocol 该栏显示的就是协议
http/2.0 nginx配置_第1张图片
http/2.0 nginx配置_第2张图片

你可能感兴趣的:(Nginx,http/2.0,centos,openssl)