mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-10-10 10:48:10 +02:00
Enabled recordings for BBB because https://github.com/bigbluebutton/bigbluebutton/issues/9202 was solved
This commit is contained in:
@@ -24,8 +24,12 @@ credentials: {}
|
|||||||
docker:
|
docker:
|
||||||
services:
|
services:
|
||||||
bigbluebutton:
|
bigbluebutton:
|
||||||
repository: "https://github.com/kevinveenbirkenbach/bigbluebutton-docker.git"
|
repository: "https://github.com/kevinveenbirkenbach/bigbluebutton-docker.git"
|
||||||
version: "bbb3.0"
|
version: "bbb3.0"
|
||||||
|
recording:
|
||||||
|
enabled: true # Enable recordings of sessions
|
||||||
|
cleanup: true # Auto-Cleanup Recordings
|
||||||
|
max_age_days: 30 # Cleanup recording after this amount of days
|
||||||
database:
|
database:
|
||||||
# This is set to true to pass integration test, doesn't have any other function
|
# This is set to true to pass integration test, doesn't have any other function
|
||||||
enabled: true
|
enabled: true
|
||||||
|
@@ -22,14 +22,9 @@ ENABLE_GREENLIGHT={{ BBB_GREENLIGHT_ENABLED | lower }}
|
|||||||
#ENABLE_PROMETHEUS_EXPORTER_OPTIMIZATION=true
|
#ENABLE_PROMETHEUS_EXPORTER_OPTIMIZATION=true
|
||||||
|
|
||||||
# Recording
|
# Recording
|
||||||
# IMPORTANT: this is currently a big privacy issues, because it will
|
ENABLE_RECORDING={{ BBB_RECORDING_ENABLED | lower }}
|
||||||
# record everything which happens in the conference, even when the button
|
REMOVE_OLD_RECORDING={{ BBB_RECORDING_CLEANUP_ENABLED | lower }}
|
||||||
# suggets, that it does not.
|
RECORDING_MAX_AGE_DAYS={{ BBB_RECORDING_MAX_AGE_DAYS }}
|
||||||
# https://github.com/bigbluebutton/bigbluebutton/issues/9202
|
|
||||||
# make sure that you get peoples consent, before they join a room
|
|
||||||
ENABLE_RECORDING=false
|
|
||||||
REMOVE_OLD_RECORDING=true
|
|
||||||
RECORDING_MAX_AGE_DAYS=365
|
|
||||||
|
|
||||||
# ====================================
|
# ====================================
|
||||||
# SECRETS
|
# SECRETS
|
||||||
|
@@ -43,11 +43,16 @@ BBB_RELAY_PORT_START: "{{ ports.public.relay_port_ranges[applica
|
|||||||
BBB_RELAY_PORT_END: "{{ ports.public.relay_port_ranges[application_id ~ '_end'] }}"
|
BBB_RELAY_PORT_END: "{{ ports.public.relay_port_ranges[application_id ~ '_end'] }}"
|
||||||
BBB_RELAY_PORT_RANGE: "{{ BBB_RELAY_PORT_START }}-{{ BBB_RELAY_PORT_END }}"
|
BBB_RELAY_PORT_RANGE: "{{ BBB_RELAY_PORT_START }}-{{ BBB_RELAY_PORT_END }}"
|
||||||
|
|
||||||
# Collabora
|
## Collabora
|
||||||
BBB_COLLABORA_ENABLED: "{{ applications | get_app_conf(application_id, 'docker.services.collabora.internal') }}"
|
BBB_COLLABORA_ENABLED: "{{ applications | get_app_conf(application_id, 'docker.services.collabora.internal') }}"
|
||||||
BBB_COLLABORA_URL: "{{ 'https://collabora:9980/cool' if BBB_COLLABORA_ENABLED else (domains | get_url('web-svc-collabora', WEB_PROTOCOL)) }}"
|
BBB_COLLABORA_URL: "{{ 'https://collabora:9980/cool' if BBB_COLLABORA_ENABLED else (domains | get_url('web-svc-collabora', WEB_PROTOCOL)) }}"
|
||||||
|
|
||||||
## Switchs
|
### Recording
|
||||||
|
BBB_RECORDING_ENABLED: "{{ applications | get_app_conf(application_id, 'docker.services.'~ entity_name ~'.recording.enabled') }}"
|
||||||
|
BBB_RECORDING_CLEANUP_ENABLED: "{{ applications | get_app_conf(application_id, 'docker.services.'~ entity_name ~'.recording.cleanup') }}"
|
||||||
|
BBB_RECORDING_MAX_AGE_DAYS: "{{ applications | get_app_conf(application_id, 'docker.services.'~ entity_name ~'.recording.max_age_days') }}"
|
||||||
|
|
||||||
|
## Additional Switchs
|
||||||
|
|
||||||
### Network
|
### Network
|
||||||
BBB_IP6_ENABLED: "{{ applications | get_app_conf(application_id, 'server.ip6_enabled') }}"
|
BBB_IP6_ENABLED: "{{ applications | get_app_conf(application_id, 'server.ip6_enabled') }}"
|
||||||
|
Reference in New Issue
Block a user