Marco Nie - http2 https://blog.niekun.net/tag/http2/ zh-CN Wed, 03 Apr 2019 22:54:00 +0800 Wed, 03 Apr 2019 22:54:00 +0800 使网站支持http2 https://blog.niekun.net/archives/184.html https://blog.niekun.net/archives/184.html Wed, 03 Apr 2019 22:54:00 +0800 admin 这里使用的是 Nginx 做代理。

使用 http2 需要 openssl 的版本至少是 1.0.2。使用命令openssl version查看当前版本,如果太低,需要先升级 openssl。

升级教程:https://niekun.net/index.php/archives/30.html

在 Nginx 配置文件的 server 段内修改如下:

server {
    listen               443 ssl http2;
    listen               [::]:443 ssl http2;
    ...
}

实际就是在原有配置基础上,在 listen 内加入 http2 即可。

修改后测试及重新加载配置文件:

service nginx configtest
service nginx reload
]]>
0 https://blog.niekun.net/archives/184.html#comments https://blog.niekun.net/feed/tag/http2/archives/184.html