mirror of
https://github.com/bigbluebutton/docker.git
synced 2025-08-12 06:02:33 +02:00
apply v2.3-alpha-2 changes
This commit is contained in:
@ -11,10 +11,10 @@ RUN wget https://github.com/jwilder/dockerize/releases/download/$DOCKERIZE_VERSI
|
||||
&& rm dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz
|
||||
|
||||
USER meteor
|
||||
ENV METEOR_VERSION 1.9
|
||||
ENV METEOR_VERSION 1.10.2
|
||||
RUN curl -sL https://install.meteor.com?release=$METEOR_VERSION | sed s/--progress-bar/-sL/g | /bin/sh
|
||||
|
||||
ENV TAG v2.3-alpha-1
|
||||
ENV TAG v2.3-alpha-2
|
||||
RUN cd ~ \
|
||||
&& svn checkout https://github.com/bigbluebutton/bigbluebutton/tags/$TAG/bigbluebutton-html5 \
|
||||
&& mv ~/bigbluebutton-html5 ~/source \
|
||||
@ -41,4 +41,4 @@ COPY settings.yml /app/programs/server/assets/app/config/settings.yml.tmpl
|
||||
ENTRYPOINT ["/entrypoint.sh"]
|
||||
|
||||
# lets set the tag again, so that it is include in the image for later version retrieval
|
||||
ENV TAG v2.3-alpha-1
|
||||
ENV TAG v2.3-alpha-2
|
||||
|
@ -9,9 +9,9 @@ public:
|
||||
skipCheck: {{ .Env.DISABLE_ECHO_TEST }}
|
||||
clientTitle: {{ .Env.CLIENT_TITLE }}
|
||||
appName: BigBlueButton HTML5 Client
|
||||
bbbServerVersion: 2.2
|
||||
bbbServerVersion: 2.3-dev
|
||||
copyright: "©2020 BigBlueButton Inc."
|
||||
html5ClientBuild: 1114
|
||||
html5ClientBuild: 1250
|
||||
helpLink: https://bigbluebutton.org/html5/
|
||||
lockOnJoin: true
|
||||
cdn: ""
|
||||
@ -23,13 +23,19 @@ public:
|
||||
allowUserLookup: false
|
||||
enableNetworkInformation: false
|
||||
enableLimitOfViewersInWebcam: false
|
||||
enableMultipleCameras: false
|
||||
enableMultipleCameras: true
|
||||
enableTalkingIndicator: true
|
||||
mirrorOwnWebcam: false
|
||||
viewersInWebcam: 8
|
||||
ipv4FallbackDomain: ""
|
||||
allowLogout: true
|
||||
allowFullscreen: true
|
||||
preloadNextSlides: 2
|
||||
mutedAlert:
|
||||
enabled: true
|
||||
interval: 200
|
||||
threshold: -50
|
||||
duration: 4000
|
||||
remainingTimeThreshold: 30
|
||||
remainingTimeAlertThreshold: 1
|
||||
# Warning: increasing the limit of breakout rooms per meeting
|
||||
@ -45,8 +51,8 @@ public:
|
||||
chatPushAlerts: false
|
||||
userJoinAudioAlerts: false
|
||||
userJoinPushAlerts: false
|
||||
raiseHandAudioAlerts: false
|
||||
raiseHandPushAlerts: false
|
||||
raiseHandAudioAlerts: true
|
||||
raiseHandPushAlerts: true
|
||||
fallbackLocale: en
|
||||
overrideLocale: null
|
||||
audio:
|
||||
@ -84,7 +90,7 @@ public:
|
||||
accesskey: A
|
||||
descId: openActions
|
||||
branding:
|
||||
displayBrandingArea: false
|
||||
displayBrandingArea: true
|
||||
connectionTimeout: 60000
|
||||
showHelpButton: true
|
||||
effectiveConnection:
|
||||
@ -98,6 +104,16 @@ public:
|
||||
packetLostThreshold: 10
|
||||
kurento:
|
||||
wsUrl: wss://{{ .Env.DOMAIN }}/bbb-webrtc-sfu
|
||||
# Valid for video-provider. Time (ms) before its WS connection times out
|
||||
# and tries to reconnect.
|
||||
wsConnectionTimeout: 4000
|
||||
cameraTimeouts:
|
||||
# Base camera timeout: used as the camera *sharing* timeout and
|
||||
# as the minimum camera subscribe reconnection timeout
|
||||
baseTimeout: 15000
|
||||
# Max timeout: used as the max camera subscribe reconnection timeout. Each
|
||||
# subscribe reattempt increases the reconnection timer up to this
|
||||
maxTimeout: 60000
|
||||
chromeDefaultExtensionKey: akgoaoikmbmhcopjgakkcepdgdgkjfbc
|
||||
chromeDefaultExtensionLink: https://chrome.google.com/webstore/detail/bigbluebutton-screenshare/akgoaoikmbmhcopjgakkcepdgdgkjfbc
|
||||
chromeExtensionKey: KEY
|
||||
@ -124,6 +140,17 @@ public:
|
||||
# hidden: whether this profile will be hidden in the video preview dropdown
|
||||
# constraints: a video media constraints dictionary (without the video key)
|
||||
cameraProfiles:
|
||||
# id: unique identifier of the profile
|
||||
# name: name of the profile visible to users
|
||||
# default: if this is the default profile which is pre-selected
|
||||
# bitrate: the average bitrate for used for a webcam stream
|
||||
# constraints:
|
||||
# # Optional constraints put on the requested video a browser MAY honor
|
||||
# # For a detailed list on possible values see:
|
||||
# # https://developer.mozilla.org/en-US/docs/Web/API/MediaTrackConstraints
|
||||
# # Examples:
|
||||
# width: requested width of the camera stream
|
||||
# frameRate: requested framerate
|
||||
- id: low-u30
|
||||
name: low-u30
|
||||
bitrate: 30
|
||||
@ -172,10 +199,16 @@ public:
|
||||
name: High
|
||||
default: false
|
||||
bitrate: 500
|
||||
constraints:
|
||||
width: 1280
|
||||
frameRate: 15
|
||||
- id: hd
|
||||
name: High definition
|
||||
default: false
|
||||
bitrate: 800
|
||||
constraints:
|
||||
width: 1280
|
||||
frameRate: 30
|
||||
enableScreensharing: true
|
||||
enableVideo: true
|
||||
enableVideoMenu: true
|
||||
@ -220,7 +253,7 @@ public:
|
||||
clearUsersInSeconds: 180
|
||||
pongTimeInSeconds: 15
|
||||
allowOutsideCommands:
|
||||
toggleRecording: true
|
||||
toggleRecording: false
|
||||
toggleSelfVoice: false
|
||||
poll:
|
||||
enabled: true
|
||||
@ -444,9 +477,20 @@ public:
|
||||
- pencil
|
||||
- hand
|
||||
clientLog:
|
||||
server: { enabled: false, level: info }
|
||||
console: { enabled: true, level: debug }
|
||||
external: { enabled: false, level: info, url: https://LOG_HOST/html5Log, method: POST, throttleInterval: 400, flushOnClose: true, logTag: "" }
|
||||
server:
|
||||
enabled: false
|
||||
level: info
|
||||
console:
|
||||
enabled: true
|
||||
level: debug
|
||||
external:
|
||||
enabled: false
|
||||
level: info
|
||||
url: https://LOG_HOST/html5Log
|
||||
method: POST
|
||||
throttleInterval: 400
|
||||
flushOnClose: true
|
||||
logTag: ""
|
||||
private:
|
||||
app:
|
||||
host: 0.0.0.0
|
||||
|
Reference in New Issue
Block a user