update some package to latest version

This commit is contained in:
Edi Septriyanto
2020-05-15 01:05:47 +07:00
parent 032d57bb6b
commit ce061661cd
2 changed files with 11 additions and 11 deletions

View File

@@ -69,7 +69,7 @@ INSTALL_NGINX=true
NGINX_INSTALLER="source"
# Supported Nginx version: stable (lts) | latest (mainline),
# version number e.g. 1.16.1 (only if Nginx build from source).
# version number e.g. 1.18.0 (only if Nginx build from source).
NGINX_VERSION="stable"
# Extra Nginx build parameters,
@@ -78,16 +78,16 @@ NGINX_VERSION="stable"
# Build with custom OpenSSL.
NGINX_WITH_CUSTOMSSL=false
# Available custom SSL version: e.g. openssl-1.1.1d, libressl-3.0.0
# Available custom SSL version: e.g. openssl-1.1.1g, libressl-3.0.0
# leave empty to use stack default OpenSSL.
NGINX_CUSTOMSSL_VERSION="openssl-1.1.1d"
NGINX_CUSTOMSSL_VERSION="openssl-1.1.1g"
# Build with PCRE JIT.
NGINX_WITH_PCRE=false
# PCRE JIT version (requires PCRE 8.20 and latest): e.g. pcre-8.43, pcre2-10.34
# PCRE JIT version (requires PCRE 8.20 and latest): e.g. pcre-8.44, pcre2-10.35
# get the PCRE version from here https://ftp.pcre.org/pub/pcre/
NGINX_PCRE_VERSION="pcre-8.43"
NGINX_PCRE_VERSION="pcre-8.44"
# Extra parameters,
# requires Nginx installation from source.
@@ -144,8 +144,8 @@ PHP_LOADER=""
# leave it blank or "none" to skip PHP ImageMagick installation.
PHP_IMAGEMAGICK_INSTALLER="repo"
# Available ImageMagick version: 6.9.10-62 | 7.0.8-62 | latest
PHP_IMAGEMAGICK_VERSION="7.0.8-62"
# Available ImageMagick version: 6.9.10-62 | 7.0.10-9 | latest
PHP_IMAGEMAGICK_VERSION="7.0.10-9"
[php-phalcon]
# Phalcon is a PHP web framework based on the MVC pattern delivered as C-extension.
@@ -158,7 +158,7 @@ PHP_PHALCON_VERSION="4.0.5"
# Phalcon zephir transpiler.
PHP_ZEPHIR_INSTALL=false
PHP_ZEPHIR_VERSION="0.12.15"
PHP_ZEPHIR_VERSION="0.12.19"
[php-composer]
INSTALL_PHPCOMPOSER=true
@@ -187,7 +187,7 @@ MARIABACKUP_PASS=""
INSTALL_MEMCACHED=false
MEMCACHED_INSTALLER="repo"
# Available version: 1.5.20 | latest.
# Available version: 1.6.6 | latest.
MEMCACHED_VERSION="latest"
# Enable SASL authentication.

View File

@@ -5,8 +5,8 @@
script_under_test=$(basename "$0")
# Nginx versions.
nginx_stable_version="1.16.1"
nginx_latest_version="1.17.7"
nginx_stable_version="1.18.0"
nginx_latest_version="1.17.10"
# Source the helper functions.
if [ -f scripts/helper.sh ]; then