Files
michaelschiemer/.env.production
Michael Schiemer 55a330b223 Enable Discovery debug logging for production troubleshooting
- Add DISCOVERY_LOG_LEVEL=debug
- Add DISCOVERY_SHOW_PROGRESS=true
- Temporary changes for debugging InitializerProcessor fixes on production
2025-08-11 20:13:26 +02:00

46 lines
1.1 KiB
Plaintext

# Production Environment Configuration
# WICHTIG: Dieses File nach .env.production kopieren und anpassen!
# Application Settings
APP_ENV=production
APP_DEBUG=false
APP_NAME="Michael Schiemer"
APP_KEY=base64:kJH8fsd89fs8df7sdf8sdf7sd8f7sdf
APP_TIMEZONE=Europe/Berlin
APP_LOCALE=de
# Database Configuration (Production)
DB_DRIVER=mysql
DB_HOST=db
DB_PORT=3306
DB_DATABASE=michaelschiemer
DB_USERNAME=mdb-user
DB_PASSWORD=StartSimple2024!
DB_CHARSET=utf8mb4
# Security Configuration
SECURITY_ALLOWED_HOSTS=localhost,michaelschiemer.de,www.michaelschiemer.de
SECURITY_RATE_LIMIT_PER_MINUTE=30
SECURITY_RATE_LIMIT_BURST=5
SESSION_LIFETIME=1800
# External APIs (Production)
SHOPIFY_WEBHOOK_SECRET=SECURE_WEBHOOK_SECRET_HERE
RAPIDMAIL_USERNAME=production_username
RAPIDMAIL_PASSWORD=SECURE_API_PASSWORD_HERE
RAPIDMAIL_TEST_MODE=false
# SSL/TLS Configuration
APP_SSL_PORT=443
FORCE_HTTPS=true
# Docker Production Settings
COMPOSE_PROJECT_NAME=framework-production
UID=1000
GID=1000
# Performance Settings
OPCACHE_ENABLED=true
REDIS_HOST=production-redis-host
REDIS_PORT=6379
REDIS_PASSWORD=SECURE_REDIS_PASSWORD_HERE