|
|
|
@ -63,7 +63,8 @@ |
|
|
|
|
{{ $ENABLE_LOCAL_RECORDING_SELF_START := .Env.ENABLE_LOCAL_RECORDING_SELF_START | default "false" | toBool -}} |
|
|
|
|
{{ $DISABLE_PROFILE := .Env.DISABLE_PROFILE | default "false" | toBool -}} |
|
|
|
|
{{ $ROOM_PASSWORD_DIGITS := .Env.ROOM_PASSWORD_DIGITS | default "false" -}} |
|
|
|
|
|
|
|
|
|
{{ $WHITEBOARD_COLLAB_SERVER_PUBLIC_URL := .Env.WHITEBOARD_COLLAB_SERVER_PUBLIC_URL | default "" -}} |
|
|
|
|
{{ $WHITEBOARD_ENABLED := .Env.WHITEBOARD_ENABLED | default "false" | toBool -}} |
|
|
|
|
|
|
|
|
|
// Video configuration.
|
|
|
|
|
//
|
|
|
|
@ -463,3 +464,8 @@ config.e2eping.maxConferenceSize = {{ .Env.E2EPING_MAX_CONFERENCE_SIZE }}; |
|
|
|
|
{{ if .Env.E2EPING_MAX_MESSAGE_PER_SECOND -}} |
|
|
|
|
config.e2eping.maxMessagePerSecond = {{ .Env.E2EPING_MAX_MESSAGE_PER_SECOND }}; |
|
|
|
|
{{ end }} |
|
|
|
|
|
|
|
|
|
// Settings for the Excalidraw whiteboard integration.
|
|
|
|
|
if (!config.hasOwnProperty('whiteboard')) config.whiteboard = {}; |
|
|
|
|
config.whiteboard.enabled = {{ $WHITEBOARD_ENABLED }}; |
|
|
|
|
config.whiteboard.collabServerBaseUrl = '{{ $WHITEBOARD_COLLAB_SERVER_PUBLIC_URL }}'; |