Organization and docs

This commit is contained in:
uprightbass360
2025-10-02 00:41:14 -04:00
parent ba541fbf78
commit 80af54180f
8 changed files with 165 additions and 759 deletions

View File

@@ -1,5 +1,11 @@
# AZEROTHCORE DATABASE LAYER ENVIRONMENT
# DEPLOYMENT CONFIGURATION
# Storage root path - local: ./storage, production: /nfs/containers or custom mount
STORAGE_ROOT=./storage
# Storage configuration for database layer
STORAGE_PATH=${STORAGE_ROOT}/azerothcore
# SERVER CONFIGURATION
# Timezone
TZ=UTC
@@ -50,12 +56,6 @@ MYSQL_HEALTHCHECK_START_PERIOD=120s
# External database port
MYSQL_EXTERNAL_PORT=64306
# DEPLOYMENT CONFIGURATION
# Storage root path - local: ./storage, production: /nfs/containers or custom mount
STORAGE_ROOT=./storage
# Storage configuration for database layer
STORAGE_PATH=${STORAGE_ROOT}/azerothcore
# CONTAINER NAMES
# Database layer container names
CONTAINER_MYSQL=ac-mysql
@@ -70,8 +70,8 @@ NETWORK_GATEWAY=172.20.0.1
# BACKUP CONFIGURATION
# Host volume paths for backup
HOST_BACKUP_PATH=./backups
HOST_BACKUP_SCRIPTS_PATH=./scripts
HOST_BACKUP_PATH=${STORAGE_PATH}/backups
HOST_BACKUP_SCRIPTS_PATH=${STORAGE_PATH}/scripts
# Backup settings
BACKUP_CRON_SCHEDULE="0 3 * * *"