amazon linux2 and nginx version

0

When using the Amazon Linux 2 kernel version 4.14.311-233.529, is the supported nginx version 1.22.1 for this kernel version?

chn
已提問 6 個月前檢視次數 919 次
1 個回答
0

Hello.

You can install 1.22.1 by installing with "amazon-linux-extras".
I think you can install a newer version than 1.22.1 by adding the Nginx repository.

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

Please enter the following settings in nginx.repo.

[nginx-stable]
name=nginx stable repo
baseurl=http://nginx.org/packages/amzn2/$releasever/$basearch/
gpgcheck=1
enabled=1
gpgkey=https://nginx.org/keys/nginx_signing.key
module_hotfixes=true

[nginx-mainline]
name=nginx mainline repo
baseurl=http://nginx.org/packages/mainline/amzn2/$releasever/$basearch/
gpgcheck=1
enabled=1
gpgkey=https://nginx.org/keys/nginx_signing.key
module_hotfixes=true
sudo yum-config-manager --enable nginx-mainline

# You can check the version to install with the following command
sudo yum --showduplicate list nginx

sudo yum install nginx-1.25.3 -y
profile picture
專家
已回答 6 個月前
profile pictureAWS
專家
已審閱 6 個月前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南