Nginx 1.9 支持http2 协议
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
还有网站专门演示了下http2的效果:
https://http2.akamai.com/demo
4,总结
http2对用户体验非常好,增加上也挺好的。毕竟速度快大家都喜欢。google的浏览器就支持http2。
更多Nginx相关教程见以下内容:
Nginx 的详细介绍:请点这里
Nginx 的下载地址:请点这里
相关推荐
lwplvx 2020-07-22
nginxs 2020-11-14
Guanjs0 2020-11-13
小木兮子 2020-11-11
yserver 2020-11-11
ssihc0 2020-11-11
windle 2020-11-10
HanksWang 2020-11-10
liuchen0 2020-11-10
Freshairx 2020-11-10
ccschan 2020-11-10
liwf 2020-11-10
Guanjs0 2020-11-09
AderStep 2020-11-09
zrtlin 2020-11-09
mqfcu 2020-11-10