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
asked 6 months ago811 views
1 Answer
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
EXPERT
answered 6 months ago
profile pictureAWS
EXPERT
reviewed 6 months ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions