# =============================================================================
# LaaHTech IOMAD — B2B standalone environment
# =============================================================================
# Copy this file to .env and fill in all values before starting.
#   cp .env.example .env
# =============================================================================

# ---------------------------------------------------------------------------
# Domain
# ---------------------------------------------------------------------------
# The public domain for this IOMAD instance.
# Examples: learn.acme-corp.com  |  b2b.school.laahtech.com
DOMAIN=b2b.school.laahtech.test

# ---------------------------------------------------------------------------
# Database (MariaDB)
# ---------------------------------------------------------------------------
MYSQL_ROOT_PASSWORD=MYSQL_ROOT_PASSWORD
IOMAD_DB_HOST=mariadb
IOMAD_DB_NAME=DB_NAME(e.g. iomad)
IOMAD_DB_USERNAME=DB_USER(e.g. iomaduser)
IOMAD_DB_PASSWORD=DB_PASSWORD(e.g. iomadpass)
MARIADB_PORT=3307

# ---------------------------------------------------------------------------
# PHP tuning (optional — defaults are suitable for most deployments)
# ---------------------------------------------------------------------------
PHP_MEMORY_LIMIT=512M
PHP_MAX_EXECUTION_TIME=300
PHP_UPLOAD_MAX_FILESIZE=512M
PHP_POST_MAX_SIZE=512M

# ---------------------------------------------------------------------------
# SSL / Let's Encrypt
# ---------------------------------------------------------------------------
# Email used for Let's Encrypt certificate notifications.
CERTBOT_EMAIL=dev@laahtech.test
