nginx 1.9 支持http2 协议

本文的原文连接是: http://blog.csdn.net/freewebsys/article/details/50471862 未经博主允许不得转载。
博主地址是:http://blog.csdn.net/freewebsys

1,关于HTTP2

最近升级了下nginx,发现原本的spdy支持被移除了,支持http2了。
这个是非常好的消息呢。于是直接编译安装了下。

编译参数:增加了统计和 realip和 http2模块

./configure --with-http_stub_status_module --with-http_realip_module --with-http_v2_module
gmake
gmake install

2,配置

非常简单替换之前的spdy成 http2 即可:

server {
    listen 80 http2;
    server_name  www.demo.com;

...

重启服务即可

3,测试

有网站提供http2 测试。
https://http2-check.com/t/google.com
nginx 1.9 支持http2 协议_第1张图片
还有网站专门演示了下http2的效果:
https://http2.akamai.com/demo
nginx 1.9 支持http2 协议_第2张图片

4,总结

http2对用户体验非常好,增加上也挺好的。毕竟速度快大家都喜欢。google的浏览器就支持http2。

你可能感兴趣的:(nginx,http2)