vlambda博客
学习文章列表

CentOS 8升级nginx至最新版本(yum方式)

CentOS8的Yum仓库中内置的nginx版本是1.14.1,最近漏扫提示需要升级至1.17.7以上版本,记录一下yum命令使用中科大的镜像源简单粗暴有效更新的方法:


先添加中科大的镜像repo

$ sudo vim /etc/yum.repos.d/nginx.repo

使用mainline最新版本的repo

[nginx-mainline]name=nginx mainline repobaseurl=http://mirrors.ustc.edu.cn/nginx/mainline/centos/$releasever/$basearch/gpgcheck=0enabled=1module_hotfixes=true

就地升级

$ sudo yum update

确认版本

$ nginx -vnginx version: nginx/1.17.10