mirror of
https://github.com/bigbluebutton/docker.git
synced 2024-11-22 08:03:19 +01:00
apply v2.2.12 changes
This commit is contained in:
parent
aae9852264
commit
b22247d05d
@ -9,9 +9,9 @@ public:
|
||||
skipCheck: false
|
||||
clientTitle: {{ .Env.CLIENT_TITLE }}
|
||||
appName: BigBlueButton HTML5 Client
|
||||
bbbServerVersion: 2.2-dev
|
||||
bbbServerVersion: 2.2
|
||||
copyright: "©2019 BigBlueButton Inc."
|
||||
html5ClientBuild: 870
|
||||
html5ClientBuild: 924
|
||||
helpLink: https://bigbluebutton.org/html5/
|
||||
lockOnJoin: true
|
||||
cdn: ""
|
||||
@ -68,9 +68,6 @@ public:
|
||||
openActions:
|
||||
accesskey: A
|
||||
descId: openActions
|
||||
openStatus:
|
||||
accesskey: S
|
||||
descId: openStatus
|
||||
branding:
|
||||
displayBrandingArea: false
|
||||
connectionTimeout: 60000
|
||||
@ -90,6 +87,17 @@ public:
|
||||
chromeDefaultExtensionLink: {{ .Env.SCREENSHARE_EXTENSION_LINK }}
|
||||
chromeExtensionKey: KEY
|
||||
chromeExtensionLink: LINK
|
||||
screenshare:
|
||||
constraints:
|
||||
video:
|
||||
frameRate:
|
||||
ideal: 5
|
||||
max: 10
|
||||
width:
|
||||
max: 2560
|
||||
height:
|
||||
max: 1600
|
||||
audio: false
|
||||
chromeScreenshareSources:
|
||||
- window
|
||||
- screen
|
||||
@ -170,6 +178,8 @@ public:
|
||||
hidePresentation: false
|
||||
media:
|
||||
stunTurnServersFetchAddress: "/bigbluebutton/api/stuns"
|
||||
cacheStunTurnServers: true
|
||||
fallbackStunServer: ''
|
||||
mediaTag: "#remote-media"
|
||||
callTransferTimeout: 5000
|
||||
callHangupTimeout: 2000
|
||||
@ -215,6 +225,8 @@ public:
|
||||
mime: application/vnd.oasis.opendocument.image
|
||||
- extension: .jpg
|
||||
mime: image/jpeg
|
||||
- extension: .jpeg
|
||||
mime: image/jpeg
|
||||
- extension: .png
|
||||
mime: image/png
|
||||
user:
|
||||
@ -303,8 +315,7 @@ public:
|
||||
clientLog:
|
||||
server: { enabled: true, level: info }
|
||||
console: { enabled: true, level: debug }
|
||||
external: {enabled: false, level: info, url: 'https://LOG_HOST/html5Log', method: POST,
|
||||
throttleInterval: 400, flushOnClose: true, logTag: ""}
|
||||
external: { enabled: false, level: info, url: https://LOG_HOST/html5Log, method: POST, throttleInterval: 400, flushOnClose: true, logTag: "" }
|
||||
private:
|
||||
app:
|
||||
host: 0.0.0.0
|
||||
|
@ -10,6 +10,6 @@ RUN apt-get update \
|
||||
# -- install docker cli
|
||||
COPY --from=library/docker:latest /usr/local/bin/docker /usr/bin/docker
|
||||
|
||||
COPY bbb-restart-kms entrypoint.sh /
|
||||
COPY bbb-restart-kms bbb-resync-freeswitch entrypoint.sh /
|
||||
|
||||
ENTRYPOINT ["/entrypoint.sh"]
|
6
mod/periodic/bbb-resync-freeswitch
Executable file
6
mod/periodic/bbb-resync-freeswitch
Executable file
@ -0,0 +1,6 @@
|
||||
#!/bin/bash
|
||||
|
||||
# https://github.com/bigbluebutton/bigbluebutton/pull/9597/files
|
||||
|
||||
CONTAINER_ID=$(docker ps | grep freeswitch | awk '{print $1}')
|
||||
docker exec -it $CONTAINER_ID fs_cli -H 10.7.7.1 -P 8021 -x 'fsctl sync_clock_when_idle'
|
@ -10,6 +10,9 @@ do
|
||||
# restart kurento after 24h
|
||||
/bbb-restart-kms
|
||||
|
||||
# resync freeswitch
|
||||
/bbb-resync-freeswitch
|
||||
|
||||
# delete presentations older than N days
|
||||
find /var/bigbluebutton/ -maxdepth 1 -type d -name "*-*" -mtime +$history -exec rm -rf '{}' +
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user