forked from extern/docker
apply v2.2.23 changes
This commit is contained in:
parent
3ebd8cc6d3
commit
8f1a786678
@ -1 +1 @@
|
|||||||
Subproject commit 400fe636e63563437fb112c2df0261d6be9f103e
|
Subproject commit 8dfb34d808b4648873340877904500629ba55dc6
|
@ -310,7 +310,12 @@
|
|||||||
* instead of the reverse proxy's IP.
|
* instead of the reverse proxy's IP.
|
||||||
*/
|
*/
|
||||||
"trustProxy": true,
|
"trustProxy": true,
|
||||||
|
|
||||||
|
/*
|
||||||
|
* When embedding the pads in an iframe set this to true.
|
||||||
|
*/
|
||||||
|
"forceSameSiteNone": false,
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Privacy: disable IP logging
|
* Privacy: disable IP logging
|
||||||
*/
|
*/
|
||||||
|
@ -14,7 +14,7 @@ USER meteor
|
|||||||
ENV METEOR_VERSION 1.8.1
|
ENV METEOR_VERSION 1.8.1
|
||||||
RUN curl -sL https://install.meteor.com?release=$METEOR_VERSION | sed s/--progress-bar/-sL/g | /bin/sh
|
RUN curl -sL https://install.meteor.com?release=$METEOR_VERSION | sed s/--progress-bar/-sL/g | /bin/sh
|
||||||
|
|
||||||
ENV TAG v2.2.22
|
ENV TAG v2.2.23
|
||||||
RUN cd ~ \
|
RUN cd ~ \
|
||||||
&& svn checkout https://github.com/bigbluebutton/bigbluebutton/tags/$TAG/bigbluebutton-html5 \
|
&& svn checkout https://github.com/bigbluebutton/bigbluebutton/tags/$TAG/bigbluebutton-html5 \
|
||||||
&& mv ~/bigbluebutton-html5 ~/source \
|
&& mv ~/bigbluebutton-html5 ~/source \
|
||||||
@ -51,4 +51,4 @@ USER meteor
|
|||||||
ENTRYPOINT ["/entrypoint.sh"]
|
ENTRYPOINT ["/entrypoint.sh"]
|
||||||
|
|
||||||
# lets set the tag again, so that it is include in the image for later version retrieval
|
# lets set the tag again, so that it is include in the image for later version retrieval
|
||||||
ENV TAG v2.2.22
|
ENV TAG v2.2.23
|
||||||
|
@ -11,7 +11,7 @@ public:
|
|||||||
appName: BigBlueButton HTML5 Client
|
appName: BigBlueButton HTML5 Client
|
||||||
bbbServerVersion: 2.2
|
bbbServerVersion: 2.2
|
||||||
copyright: "©2020 BigBlueButton Inc."
|
copyright: "©2020 BigBlueButton Inc."
|
||||||
html5ClientBuild: 992
|
html5ClientBuild: 1006
|
||||||
helpLink: https://bigbluebutton.org/html5/
|
helpLink: https://bigbluebutton.org/html5/
|
||||||
lockOnJoin: true
|
lockOnJoin: true
|
||||||
cdn: ""
|
cdn: ""
|
||||||
@ -160,15 +160,15 @@ public:
|
|||||||
constraints:
|
constraints:
|
||||||
frameRate: 10
|
frameRate: 10
|
||||||
- id: low
|
- id: low
|
||||||
name: Low quality
|
name: Low
|
||||||
default: false
|
default: false
|
||||||
bitrate: 100
|
bitrate: 100
|
||||||
- id: medium
|
- id: medium
|
||||||
name: Medium quality
|
name: Medium
|
||||||
default: true
|
default: true
|
||||||
bitrate: 200
|
bitrate: 200
|
||||||
- id: high
|
- id: high
|
||||||
name: High quality
|
name: High
|
||||||
default: false
|
default: false
|
||||||
bitrate: 500
|
bitrate: 500
|
||||||
- id: hd
|
- id: hd
|
||||||
@ -200,6 +200,21 @@ public:
|
|||||||
profile: low-u25
|
profile: low-u25
|
||||||
- threshold: 30
|
- threshold: 30
|
||||||
profile: low-u30
|
profile: low-u30
|
||||||
|
pagination:
|
||||||
|
# whether to globally enable or disable pagination.
|
||||||
|
enabled: false
|
||||||
|
# how long (in ms) the negotiation will be debounced after a page change.
|
||||||
|
pageChangeDebounceTime: 2500
|
||||||
|
# video page sizes for DESKTOP endpoints. It stands for the number of SUBSCRIBER streams.
|
||||||
|
# PUBLISHERS aren't accounted for .
|
||||||
|
# A page size of 0 (zero) means that the page size is unlimited (disabled).
|
||||||
|
desktopPageSizes:
|
||||||
|
moderator: 0
|
||||||
|
viewer: 5
|
||||||
|
# video page sizes for MOBILE endpoints
|
||||||
|
mobilePageSizes:
|
||||||
|
moderator: 2
|
||||||
|
viewer: 2
|
||||||
pingPong:
|
pingPong:
|
||||||
clearUsersInSeconds: 180
|
clearUsersInSeconds: 180
|
||||||
pongTimeInSeconds: 15
|
pongTimeInSeconds: 15
|
||||||
|
Loading…
Reference in New Issue
Block a user