Add HORIZON_ALLOWED_EMAILS env var to grant additional users access to the Horizon dashboard. Root user (User ID 0) always retains access. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
43 lines
941 B
Text
43 lines
941 B
Text
# Coolify Configuration
|
|
APP_ENV=local
|
|
APP_NAME=Coolify
|
|
APP_ID=development
|
|
APP_KEY=
|
|
APP_URL=http://localhost
|
|
APP_PORT=8000
|
|
APP_DEBUG=true
|
|
SSH_MUX_ENABLED=true
|
|
|
|
# PostgreSQL Database Configuration
|
|
DB_DATABASE=coolify
|
|
DB_USERNAME=coolify
|
|
DB_PASSWORD=password
|
|
DB_HOST=host.docker.internal
|
|
DB_PORT=5432
|
|
|
|
# Ray Configuration
|
|
# Set to true to enable Ray
|
|
RAY_ENABLED=false
|
|
# Set custom ray port
|
|
# RAY_PORT=
|
|
|
|
# Enable Laravel Telescope for debugging
|
|
TELESCOPE_ENABLED=false
|
|
|
|
# Laravel Horizon Admin Access
|
|
# Comma-separated list of email addresses allowed to access /horizon dashboard
|
|
# The root user (User ID 0) always has access
|
|
# HORIZON_ALLOWED_EMAILS=admin@example.com,devops@example.com
|
|
|
|
# Enable Laravel Nightwatch monitoring
|
|
NIGHTWATCH_ENABLED=false
|
|
NIGHTWATCH_TOKEN=
|
|
|
|
# Selenium Driver URL for Dusk
|
|
DUSK_DRIVER_URL=http://selenium:4444
|
|
|
|
# Special Keys for Andras
|
|
# For cache purging
|
|
BUNNY_API_KEY=
|
|
# For asset uploads
|
|
BUNNY_STORAGE_API_KEY=
|