From 1c4dbe2f98874db88c3befcc87f0817e1818b648 Mon Sep 17 00:00:00 2001 From: chandi Date: Wed, 21 Oct 2020 00:04:47 +0200 Subject: [PATCH] allow setting the breakout room limit --- CHANGELOG.md | 1 + docker-compose.yml | 1 + mod/html5/settings.yml | 2 +- sample.env | 6 ++++++ 4 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 51e1b5c..0afe888 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ ## Unreleased - Applied v2.2.28 changes @alangecker - Updated `development.md` docs (example config & note about issue #66) @alangecker +- Allow setting the breakout room limit @alangecker ## Release v2.2.27-2 (2020-10-16) - Increase proxy timeout to avoid aborting websocket connections @alangecker diff --git a/docker-compose.yml b/docker-compose.yml index 581f2a1..ba05fd1 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -151,6 +151,7 @@ services: DISABLE_VIDEO_PREVIEW: ${DISABLE_VIDEO_PREVIEW:-false} CHAT_ENABLED: ${CHAT_ENABLED:-true} CHAT_START_CLOSED: ${CHAT_START_CLOSED:-false} + BREAKOUTROOM_LIMIT: ${BREAKOUTROOM_LIMIT:-8} DEV_MODE: ${DEV_MODE:-} networks: bbb-net: diff --git a/mod/html5/settings.yml b/mod/html5/settings.yml index b49367f..fb1cfa1 100644 --- a/mod/html5/settings.yml +++ b/mod/html5/settings.yml @@ -35,7 +35,7 @@ public: # Warning: increasing the limit of breakout rooms per meeting # can generate excessive overhead to the server. We recommend # this value to be kept under 12. - breakoutRoomLimit: 8 + breakoutRoomLimit: {{ .Env.BREAKOUTROOM_LIMIT }} defaultSettings: application: animations: true diff --git a/sample.env b/sample.env index 89da73b..bba1830 100644 --- a/sample.env +++ b/sample.env @@ -114,6 +114,12 @@ DISABLE_SOUND_MUTED=false # set to true to disable announcement "You are the only person in this conference" DISABLE_SOUND_ALONE=false +# maximum count of breakout rooms per meeting +# Warning: increasing the limit of breakout rooms per meeting +# can generate excessive overhead to the server. We recommend +# this value to be kept under 12. +BREAKOUTROOM_LIMIT=8 + # ==================================== # GREENLIGHT CONFIGURATION # ====================================