mirror of
https://github.com/bigbluebutton/docker.git
synced 2025-01-15 18:28:17 +01:00
c740f55e5a
quite some features (recording, SIP, transcription, etc.) are not working yet, but a milestone where it should finally take a commit
24 lines
747 B
Properties
24 lines
747 B
Properties
defaultWelcomeMessage={{ .Env.WELCOME_MESSAGE }}
|
|
defaultWelcomeMessageFooter={{ .Env.WELCOME_FOOTER }}
|
|
|
|
{{ if isTrue .Env.ENABLE_RECORDING }}
|
|
disableRecordingDefault=false
|
|
{{ else }}
|
|
disableRecordingDefault=true
|
|
{{ end }}
|
|
|
|
bigbluebutton.web.serverURL=https://{{ .Env.DOMAIN }}
|
|
|
|
securitySalt={{ .Env.SHARED_SECRET }}
|
|
|
|
redisHost=redis
|
|
|
|
{{ if isTrue .Env.DEV_MODE }}
|
|
beans.presentationService.defaultUploadedPresentation=https://test27.bigbluebutton.org/default.pdf
|
|
# fetch presentations without HTTPS
|
|
presentationBaseURL=http://{{ .Env.DOMAIN }}/bigbluebutton/presentation
|
|
{{else}}
|
|
beans.presentationService.defaultUploadedPresentation=${bigbluebutton.web.serverURL}/default.pdf
|
|
{{end}}
|
|
|
|
learningDashboardEnabled={{ .Env.ENABLE_LEARNING_DASHBOARD }} |