/home/suroeste/public_html/payments.transportessuroeste.com
Edit: /home/suroeste/public_html/payments.transportessuroeste.com/.env.example (2517B)
# ============================================================================
# TRANSPORTES SUROESTE - Environment Variables
# ============================================================================
# Copy this file to .env and configure with real values
# NEVER commit .env to version control
# ============================================================================
# APPLICATION
# ---------------------------------------------------------------------------
APP_ENV=development # development | staging | production
APP_URL=http://localhost:8080 # Base URL of the application
# DATABASE
# ---------------------------------------------------------------------------
DB_NAME=transportes_suroeste_payments
DB_USER=ts_app
DB_PASS=CHANGE_ME_secure_password_123 # min 16 chars, mixed case, numbers, symbols
MYSQL_ROOT_PASSWORD=CHANGE_ME_root_pw # Only used for initial setup
# EPAYCO CREDENTIALS
# ---------------------------------------------------------------------------
# Get from https://dashboard.epayco.co
EPAYCO_PUBLIC_KEY=your_public_key_here
EPAYCO_PRIVATE_KEY=your_private_key_here
EPAYCO_P_KEY=your_p_key_here
EPAYCO_TEST_MODE=true # true for sandbox, false for production
# SECURITY KEYS
# ---------------------------------------------------------------------------
# Generate with: php -r "echo bin2hex(random_bytes(32));"
ENCRYPTION_KEY=CHANGE_ME_generate_64_hex_chars_encryption_key_here_000000000000
JWT_SECRET=CHANGE_ME_generate_64_hex_chars_jwt_secret_here_00000000000000000
# REDIS
# ---------------------------------------------------------------------------
REDIS_HOST=redis # Docker service name
REDIS_PORT=6379
REDIS_PASSWORD= # Leave empty for no auth
REDIS_DATABASE=0 # DB number (0-15)
# RATE LIMITING
# ---------------------------------------------------------------------------
RATE_LIMIT_REQUESTS=100 # Max requests per window
RATE_LIMIT_WINDOW=60 # Window size in seconds
RATE_LIMIT_BAN_TIME=3600 # Ban duration in seconds
# DOCKER PORTS (development)
# ---------------------------------------------------------------------------
NGINX_PORT=8080 # HTTP port
MYSQL_PORT=3306 # MySQL external port
PMA_PORT=8081 # phpMyAdmin port
REDIS_PORT=6379 # Redis external port