Enhance env vars

This commit is contained in:
Edi Septriyanto
2021-07-09 01:35:37 +07:00
parent d3eb4d370d
commit 7e37c1899c

View File

@@ -38,6 +38,9 @@ AUTO_INSTALL=true
AUTO_REMOVE=false
FORCE_REMOVE=false
# Fix broken packages
FIX_BROKEN=false
# Dry run install, true for testing only.
DRYRUN=false
@@ -69,6 +72,8 @@ HASH_LENGTH=2048
[nginx]
INSTALL_NGINX=true
# Available Nginx installer: repo | source
NGINX_INSTALLER="source"
# Supported Nginx version: stable (lts) | latest (mainline),
@@ -114,10 +119,13 @@ GEOLITE2_LICENSE_KEY=""
NGX_HTTP_HEADERS_MORE=true
NGX_HTTP_IMAGE_FILTER=true
NGX_HTTP_MEMCACHED=true
NGX_HTTP_NAXSI=true
NGX_HTTP_LUA=false
NGX_HTTP_MEMCACHED=false
NGX_HTTP_NAXSI=false
NGX_HTTP_NDK=false
NGX_HTTP_NJS=false
NGX_HTTP_PASSENGER=false
NGX_HTTP_REDIS2=true
NGX_HTTP_REDIS2=false
NGX_HTTP_SUBS_FILTER=true
NGX_HTTP_UPSTREAM_FAIR=true
NGX_HTTP_VTS=true
@@ -134,36 +142,42 @@ INSTALL_PHP=true
# It is highly recommended to install PHP version 7.4 or greater.
PHP_VERSION="7.4"
[php-loader]
# PHP Loader is a PHP extension (module) that enables PHP
# to load protected and encoded files.
INSTALL_PHP_LOADER=false
# Available PHP loader: ioncube | sourceguardian
# leave it blank or "none" to skip PHP loader installation.
PHP_LOADER="none"
[php-imagemagick]
# ImageMagick is a free and open-source software suite for manipulating raster and vector image.
INSTALL_PHP_IMAGEMAGICK=true
# Available ImageMagick & PHP module installer: repo | source
# leave it blank or "none" to skip PHP ImageMagick installation.
PHP_IMAGEMAGICK_INSTALLER="repo"
# Available ImageMagick version: 6.9.10-62 | 7.0.10-14 | latest
PHP_IMAGEMAGICK_VERSION="7.0.10-14"
# Available ImageMagick version: 6.9.10-62 | 7.1.0-0 | latest
PHP_IMAGEMAGICK_VERSION="7.1.0-0"
[php-phalcon]
# Phalcon is a PHP web framework based on the MVC pattern delivered as C-extension.
INSTALL_PHP_PHALCON=false
# Available Phalcon installer: repo | source
# leave it blank or "none" to skip Phalcon installation.
PHP_PHALCON_INSTALLER="source"
PHP_PHALCON_INSTALLER="repo"
# Available Phalcon version: 3.4.5 | 4.0.6 | latest
PHP_PHALCON_VERSION="4.1.2"
# Phalcon zephir transpiler.
PHP_ZEPHIR_INSTALL=false
INSTALL_PHP_ZEPHIR=false
PHP_ZEPHIR_VERSION="0.12.19"
[php-composer]
INSTALL_PHPCOMPOSER=true
INSTALL_PHP_COMPOSER=true
[mysql]
INSTALL_MYSQL=true
@@ -215,7 +229,7 @@ REDIS_INSTALLER="repo"
REDIS_VERSION="stable"
# Enable pass authentication.
REDIS_REQUIREPASS=false
REDIS_REQUIRE_PASS=false
REDIS_PASSWORD=""
[dns]
@@ -234,7 +248,7 @@ SENDER_DOMAIN="example.com"
INSTALL_CERTBOT=true
[firewall]
INSTALL_FW=true
INSTALL_FW=false
# Firewall configurator engine
# available engine: ufw | csf | apf
@@ -242,7 +256,7 @@ INSTALL_FW=true
FW_ENGINE="ufw"
[fail2ban]
INSTALL_FAIL2BAN=true
INSTALL_FAIL2BAN=false
# Available installer: repo | source.
FAIL2BAN_INSTALLER="source"