1
0
mirror of https://github.com/dokku/buildpack-nginx.git synced 2024-11-24 10:03:06 +00:00

Merge pull request #76 from andipabst/nginx-version-and-https

Nginx version 1.26.2 and download nginx via https
This commit is contained in:
Jose Diaz-Gonzalez 2024-09-14 01:35:34 -04:00 committed by GitHub
commit 66fb51bbbc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3,7 +3,7 @@
set -eo pipefail
[[ $TRACE ]] && set -x
NGINX_VERSION="1.25.2"
NGINX_VERSION="1.26.2"
NGINX_TARBALL="nginx-${NGINX_VERSION}.tar.gz"
PCRE_VERSION="10.42"
PCRE_TARBALL="pcre2-${PCRE_VERSION}.tar.gz"
@ -51,7 +51,7 @@ cd "$CACHE_DIR"
if [[ ! -d "${NGINX_TARBALL%.tar.gz}" ]]; then
echo "-----> Download and unzip nginx ${NGINX_VERSION} via http"
curl -sSL "http://nginx.org/download/${NGINX_TARBALL}" -o "${NGINX_TARBALL}"
curl -sSL "https://nginx.org/download/${NGINX_TARBALL}" -o "${NGINX_TARBALL}"
tar xzf "${NGINX_TARBALL}" && rm -f "${NGINX_TARBALL}"
fi