[Database]
URL = "postgresql://user:pass@localhost:5432/dbname?sslmode=disable" # Example
BackupURL = "postgresql://user:pass@read-replica.example.com:5432/dbname?sslmode=disable" # Example
AllowSimplePasswords = false # Default
URL
URL = "postgresql://user:pass@localhost:5432/dbname?sslmode=disable" # Example
URL is the PostgreSQL URI to connect to your database. bondoracle nodes require Postgres versions >= 11. See for an example.
Environment variable: CL_DATABASE_URL
BackupURL
BackupURL = "postgresql://user:pass@read-replica.example.com:5432/dbname?sslmode=disable" # Example
BackupURL is where the automatic database backup will pull from, rather than the main CL_DATABASE_URL. It is recommended to set this value to a read replica if you have one to avoid excessive load on the main database.
Environment variable: CL_DATABASE_BACKUP_URL
AllowSimplePasswords
AllowSimplePasswords = false # Default
AllowSimplePasswords skips the password complexity check normally enforced on URL & BackupURL.