mirror of
https://github.com/coollabsio/coolify.git
synced 2026-06-14 03:19:51 +00:00
36526928df
Move Sentinel push handling into a controller and dispatch server update jobs only when container state changes or the force interval elapses. Add opt-in PostgreSQL read/write replica configuration and tune periodic proxy network and storage checks to reduce unnecessary work. Add feature coverage for replica config, Sentinel push deduplication, deployment log scrolling, and server update job optimizations.
51 lines
1.1 KiB
Bash
51 lines
1.1 KiB
Bash
# 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
|
|
|
|
# Read/write replicas (optional). Set DB_READ_HOST to enable the read/write split.
|
|
# Hosts may be comma-separated. Port/username/password fall back to DB_* when unset.
|
|
# DB_READ_HOST=replica1,replica2
|
|
# DB_READ_PORT=5432
|
|
# DB_READ_USERNAME=coolify
|
|
# DB_READ_PASSWORD=
|
|
# DB_WRITE_HOST=
|
|
# DB_WRITE_PORT=5432
|
|
# DB_WRITE_USERNAME=coolify
|
|
# DB_WRITE_PASSWORD=
|
|
# DB_STICKY=true
|
|
|
|
# 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
|
|
|
|
# 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=
|