24 lines
663 B
Plaintext
24 lines
663 B
Plaintext
|
|
# Flask Configuration
|
||
|
|
SECRET_KEY=dev-secret-key-change-in-production
|
||
|
|
|
||
|
|
# Database
|
||
|
|
DATABASE_URL=postgresql://hosting:hosting_pass_2024@localhost:5432/hosting
|
||
|
|
|
||
|
|
# Redis
|
||
|
|
REDIS_URL=redis://localhost:6379/0
|
||
|
|
|
||
|
|
# Load Balancer IPs (comma separated)
|
||
|
|
LB_IPS=176.96.129.77
|
||
|
|
|
||
|
|
# API Configuration
|
||
|
|
API_HOST=0.0.0.0
|
||
|
|
API_PORT=5000
|
||
|
|
|
||
|
|
# Encryption Key (REQUIRED - Generate with: python -c "from cryptography.fernet import Fernet; print(Fernet.generate_key().decode())")
|
||
|
|
ENCRYPTION_KEY=qcaGX4ChgOqDRmfxaikZYYJJ_qYZUDx2nRWVVGHr4sM=
|
||
|
|
|
||
|
|
# Cloudflare Platform Accounts (DEPRECATED - Use database instead)
|
||
|
|
# PLATFORM_CF_API_TOKEN=your_token_here
|
||
|
|
# PLATFORM_CF_ACCOUNT_ID=your_account_id_here
|
||
|
|
|