mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-07-16 01:26:07 +00:00
chore: harden php8 compatibility, optimize installer/croppers, and refresh docs/admin ux
This commit is contained in:
+13
-6
@@ -1,11 +1,18 @@
|
||||
# MySQL Database Configuration
|
||||
MYSQL_ROOT_PASSWORD=rootpassword
|
||||
MYSQL_DATABASE=travian
|
||||
MYSQL_USER=travianz
|
||||
MYSQL_PASSWORD=travianzpass
|
||||
# MariaDB Database Configuration (preferred)
|
||||
MARIADB_ROOT_PASSWORD=rootpassword
|
||||
MARIADB_DATABASE=travian
|
||||
MARIADB_USER=travianz
|
||||
MARIADB_PASSWORD=travianzpass
|
||||
|
||||
# Legacy compatibility keys (optional)
|
||||
# These keys inherit directly from MARIADB_* to avoid duplicate values.
|
||||
MYSQL_ROOT_PASSWORD=${MARIADB_ROOT_PASSWORD}
|
||||
MYSQL_DATABASE=${MARIADB_DATABASE}
|
||||
MYSQL_USER=${MARIADB_USER}
|
||||
MYSQL_PASSWORD=${MARIADB_PASSWORD}
|
||||
|
||||
# Application Configuration
|
||||
# These values will be used during the installation wizard
|
||||
# These values will be used during the installation wizard.
|
||||
# Hostname for database connection (use 'db' when running in Docker)
|
||||
DB_HOST=db
|
||||
DB_PORT=3306
|
||||
|
||||
Reference in New Issue
Block a user