Skip to content

Commit 6f8c17d

Browse files
authored
Upgrade nginx to 1.26.1 since it is the new stable version (#827)
Since 1.26.x has been marked stable, 1.25.x is automatically EOL as nginx only maintains one mainline version and one stable version.
1 parent f953eb6 commit 6f8c17d

File tree

3 files changed

+383
-5
lines changed

3 files changed

+383
-5
lines changed

image/base/install-nginx

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,12 @@
22
set -e
33

44
# version check: https://nginx.org/en/download.html
5-
VERSION=1.25.3
6-
HASH="64c5b975ca287939e828303fa857d22f142b251f17808dfe41733512d9cded86"
5+
VERSION=1.26.1
76

87
cd /tmp
98
wget -q https://nginx.org/download/nginx-$VERSION.tar.gz
10-
sha256sum nginx-$VERSION.tar.gz
11-
echo "$HASH nginx-$VERSION.tar.gz" | sha256sum -c
9+
wget -q https://nginx.org/download/nginx-$VERSION.tar.gz.asc
10+
gpg --verify nginx-$VERSION.tar.gz.asc nginx-$VERSION.tar.gz
1211
tar zxf nginx-$VERSION.tar.gz
1312
cd nginx-$VERSION
1413

0 commit comments

Comments
 (0)