mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-10-10 18:58:10 +02:00
- Switch to custom BBB Docker repository - Externalize Coturn and Collabora by default - Add dedicated 03_dependencies.yml for dependency handling - Improve env templating with lowercased feature flags - Add conditional healthcheck for Greenlight - Refactor TURN/STUN/relay handling with role variable _BBB_COTURN_ROLE - Extend Collabora/Greenlight dependency wiring in override file - Nextcloud Talk: refine vars and enable/disable logic with separate plugin/service flags, add network_mode support and conditional nginx proxy block Ref: https://chatgpt.com/share/68d741ff-a544-800f-9e81-a565e0bab0eb
25 lines
838 B
YAML
25 lines
838 B
YAML
credentials:
|
|
shared_secret:
|
|
description: "Shared secret for BigBlueButton API authentication"
|
|
algorithm: "sha256"
|
|
validation: "^[a-f0-9]{64}$"
|
|
etherpad_api_key:
|
|
description: "API key for Etherpad integration"
|
|
algorithm: "random_hex_32"
|
|
validation: "^[a-zA-Z0-9]{32}$"
|
|
rails_secret:
|
|
description: "Secret key for Rails backend"
|
|
algorithm: "random_hex"
|
|
validation: "^[a-f0-9]{128}$"
|
|
postgresql_secret:
|
|
description: "Password for PostgreSQL user"
|
|
algorithm: "random_hex_32"
|
|
validation: "^[a-zA-Z0-9]{32}$"
|
|
fsesl_password:
|
|
description: "Password for FreeSWITCH ESL connection"
|
|
algorithm: "random_hex"
|
|
validation: "^.{8,}$"
|
|
turn_secret:
|
|
description: "TURN server shared secret"
|
|
algorithm: "sha1"
|
|
validation: "^[a-f0-9]{40}$" |