nginx 配置http/2 协议

将下面的内容保存成install.sh,然后运行他,等运行结束之后。

yum install readline-devel pcre-devel openssl-devel gcc -y
cd /usr/local/
wget https://openresty.org/download/openresty-1.11.2.5.tar.gz
tar zxf openresty-1.11.2.5.tar.gz
cd openresty-1.11.2.5/
./configure --with-http_v2_module
gmake && gmake install

接着对nginx的配置进行修改。

server {
     listen 443 ssl;
   ...
}

修改未

server {
     listen 443 ssl http2;
   ...
}

接着重启nginx。nginx -s reload即可。刷新页面会看到h2协议。

http2仅运行在https协议下

摄影爱好者,全栈工程师,游戏玩家,积木苦手,超穷手办收藏爱好者

发表评论