一般的大家把 HTTP2 简称为 h2,尽管有些朋友可能不怎么愿意,但是这个简称已经默认化了,特别是体现在浏览器对 HTTP2 都是这个简写的。
一:nginx的安装
http2需要ssl的支持,需要的软件包如下
nginx-1.9.12.tar.gz
openssl-1.0.1s.tar.gz
pcre-8.38.zip
zlib-1.2.8.tar.gz
默认编译的 nginx 并不包含 http2 模块。所以编译nginx的时候,至少需要启用 http_v2_module 和 http_ssl_module 这两个模块
./configure --prefix=/usr/local/nginx --with-zlib=/tmp/2/zlib-1.2.8 --with-pcre=/tmp/2/pcre-8.38 --with-http_v2_module --with-http_ssl_module --with-openssl=/tmp/2/openssl-1.0.1s
然后
make
make install
二:使用openssl创建SSL证书
参照:http://blog.csdn.net/mn960mn/article/details/42374597
三:nginx的配置
server { listen 443 ssl http2; server_name http2.yuni.com; ssl_certificate /usr/local/nginx/ssl/server.crt; ssl_certificate_key /usr/local/nginx/ssl/server.key; ssl_session_cache shared:SSL:1m; ssl_session_timeout 5m; ssl_ciphers HIGH:!aNULL:!MD5; ssl_prefer_server_ciphers off; location / { root html; index index.html index.htm; } }
四:测试
最好使用最新版的chrome、firefox浏览器,我这里使用chrome v49
在本地hosts里面配置http2.yuni.com指向nginx的ip地址
然后,访问https://http2.yuni.com 注意,一定要使用https
查看nginx的access.log日志