Add env var for swap

This commit is contained in:
Edi Septriyanto
2021-06-17 00:22:11 +07:00
parent 1e8dfb3748
commit c294142c50

View File

@@ -8,21 +8,7 @@
# Use development for local environment or production for live environment.
ENVIRONMENT="production"
# Auto install, true for auto installation,
# false for manual or guided installation.
AUTO_INSTALL=true
# Cleanup existing LEMP / LAMP stack installation.
AUTO_REMOVE=false
FORCE_REMOVE=false
# Dry run install, true for testing only.
DRYRUN=false
# Logging for installation process.
LOGGING=true
# Server hostname must be valid FQDN format, leave it blank for system default.
# In production, server hostname must be valid FQDN format (e.g. hostname.domain.ext).
SERVER_HOSTNAME=""
# Server IP address, leave it blank for auto detection.
@@ -44,6 +30,23 @@ ADMIN_EMAIL="mail@example.com"
# Example: Asia/Jakarta
TIMEZONE="UTC"
# Auto install, true for auto installation,
# false for manual or guided installation.
AUTO_INSTALL=true
# Cleanup existing LEMP / LAMP stack installation.
AUTO_REMOVE=false
FORCE_REMOVE=false
# Dry run install, true for testing only.
DRYRUN=false
# Logging for installation process.
LOGGING=true
# Allocate memory to work as swap.
ENABLE_SWAP=true
# Build directorty.
BUILD_DIR="/usr/local/src/lemper"