如何在 CentOS 7 上使用 yum 更新我的 Nginx

How to update my Nginx with yum on CentOS 7

我在我的ECS服务器上使用了yum install nginx,但是版本不够高,无法支持http2。谷歌搜索后,我添加了一个配置文件:

/etc/yum.repos.d/nginx.repo

含内容:

[nginx]  
name=nginx repo  
baseurl=http://nginx.org/packages/centos/$releasever/$basearch/  
gpgcheck=0  
enabled=1

然后我运行yum update nginx,给了我1.8.1的版本,还不够高,不能支持http2。

谁能帮我把我的 nginx 更新到 1.9.5 或更高版本,好吗?

将您的配置文件更新为此

[nginx]
name=nginx repo
baseurl=http://nginx.org/packages/mainline/centos/$releasever/$basearch/
gpgcheck=0
enabled=1

您需要主线存储库