mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-11-26 14:46:56 +00:00
Includes: - Talk recording Docker service - Schema credential for recording secret - Compose integration - Automatic Talk 'recording_servers' app config Details: https://chatgpt.com/share/6920d8fc-81b4-800f-8d83-af22eeed94b5
26 lines
980 B
YAML
26 lines
980 B
YAML
credentials:
|
|
talk_recording_secret:
|
|
description: "Shared secret between Nextcloud Talk and the recording backend"
|
|
algorithm: "random_hex_32"
|
|
validation: "^[a-f0-9]{64}$"
|
|
whiteboard_jwt_secret:
|
|
description: "Secret used for JWT signing"
|
|
algorithm: "base64_prefixed_32"
|
|
validation: "^base64:[A-Za-z0-9+/]{43}=$"
|
|
administrator_password:
|
|
description: "Initial password for the Nextcloud administrator (change immediately and enable 2FA)"
|
|
algorithm: "sha256"
|
|
validation: "^[a-f0-9]{64}$"
|
|
talk_turn_secret:
|
|
description: "TURN REST secret for coturn"
|
|
algorithm: "base64_prefixed_32"
|
|
validation: "^base64:[A-Za-z0-9+/]{43}=$"
|
|
talk_signaling_secret:
|
|
description: "Secret for Talk signaling"
|
|
algorithm: "base64_prefixed_32"
|
|
validation: "^base64:[A-Za-z0-9+/]{43}=$"
|
|
talk_internal_secret:
|
|
description: "Internal secret for AIO Talk"
|
|
algorithm: "base64_prefixed_32"
|
|
validation: "^base64:[A-Za-z0-9+/]{43}=$"
|