WDCP面板升级Nginx到1.9.7,并开启HTTP/2
By
lincanbin
at 2015-11-21 • 0人收藏 • 4837人看过
Nginx在1.9.5时引入了HTTP/2支持,最近刚好有空,发现最新版已经是1.9.7了,就编译升级到了1.9.7。
http://nginx.org/en/docs/http/ngx_http_v2_module.html
根据文档说明添加编译参数
--with-http_v2_module
即可,那么就这么写:
if [ ! $1 ];then ver="1.9.7" else ver=$1 fi cd /tmp wget http://down.wdlinux.cn/in/pcre_ins.sh sh pcre_ins.sh wget -c http://nginx.org/download/nginx-$ver.tar.gz [ $? != 0 ] && echo "down err" && exit tar zxvf nginx-$ver.tar.gz cd nginx-$ver ./configure --user=www --group=www --prefix=/www/wdlinux/nginx-$ver --with-http_stub_status_module --with-http_ssl_module --with-ipv6 --with-http_v2_module [ $? != 0 ] && echo "configure err" && exit make [ $? != 0 ] && echo "make err" && exit make install [ $? != 0 ] && echo "make install err" && exit mv /www/wdlinux/nginx-$ver/conf/nginx.conf /www/wdlinux/nginx-$ver/conf/nginx.conf.default cp -pR /www/wdlinux/nginx/conf/* /www/wdlinux/nginx-$ver/conf/ service nginxd stop rm -f /www/wdlinux/nginx ln -sf /www/wdlinux/nginx-$ver /www/wdlinux/nginx sed -i '/limit_zone/d' /www/wdlinux/nginx/conf/nginx.conf service nginxd start echo echo echo "nginx Update Is OK" echo "Current Ver Is:$ver" echo
同时vhost文件监听的443端口,从:
listen 443;
改为:
listen 443 ssl http2;
即可开启HTTP/2(HTTP/2强制要求使用SSL,所以必须用了HTTPS才能使用HTTP/2)
使用较新版本的Chrome或者Firefox访问,可以看到版本已经显示为HTTP/2.0了——这个版本带来了一定的性能提升。
15 个回复 | 最后更新于 2016-12-20
登录后方可回帖
关于HTTP/2的性能提升,可以看这里:
http://blog.httpwatch.com/2015/01/16/a-simple-performance-comparison-of-https-spdy-and-http2/
国内也有翻译了:
http://www.infoq.com/cn/news/2015/02/https-spdy-http2-comparison/