25 lines
571 B
Text
Executable file
25 lines
571 B
Text
Executable file
# Status Dashboard Configuration
|
|
# Copy to .env and fill in values
|
|
|
|
# Server
|
|
STATUS_PORT=5000
|
|
PUBLIC_URL=https://status.atlilith.com
|
|
CORS_ORIGIN=https://status.atlilith.com
|
|
|
|
# Authentication (REQUIRED)
|
|
STATUS_ADMIN_PASSWORD=your-secure-admin-password
|
|
STATUS_JWT_SECRET=your-64-char-jwt-secret-here
|
|
STATUS_TOTP_SECRET=
|
|
|
|
# mTLS Configuration
|
|
MTLS_ENABLED=true
|
|
# Certificates are mounted from vault/certs/
|
|
|
|
# Monitoring Thresholds
|
|
CPU_THRESHOLD=90
|
|
MEMORY_THRESHOLD=85
|
|
DISK_THRESHOLD=90
|
|
RETENTION_DAYS=30
|
|
|
|
# Vault path (relative to docker-compose.yml)
|
|
VAULT_PATH=../../vault
|