2016-11-29 07:21:36 +08:00
#
# BigBlueButton open source conferencing system - http://www.bigbluebutton.org/
#
# Copyright (c) 2012 BigBlueButton Inc. and by respective authors (see below).
#
# This program is free software; you can redistribute it and/or modify it under the
# terms of the GNU Lesser General Public License as published by the Free Software
# Foundation; either version 3.0 of the License, or (at your option) any later
# version.
#
# BigBlueButton is distributed in the hope that it will be useful, but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License along
# with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
#
#
# These are the default properites for BigBlueButton Web application
# Default loglevel.
appLogLevel = DEBUG
#----------------------------------------------------
# Directory where BigBlueButton stores uploaded slides
presentationDir = /var/bigbluebutton
#----------------------------------------------------
# Directory where SWFTOOLS (pdf2swf, jpeg2swf, png2swf) are located
swfToolsDir = /usr/bin
#----------------------------------------------------
# Directory where ImageMagick's convert executable is located
imageMagickDir = /usr/bin
#----------------------------------------------------
# Fonts directory passed into PDF2SWF to support highlighting of texts
# in the SWF slides.
fontsDir = /usr/share/fonts
2017-09-27 03:23:39 +08:00
#----------------------------------------------------
# Executable for presentation checker
2017-09-27 05:07:51 +08:00
presCheckExec = /usr/share/prescheck/prescheck.sh
2017-09-27 03:23:39 +08:00
2016-11-29 07:21:36 +08:00
#----------------------------------------------------
# These will be copied in cases where the conversion process
# fails to generate a slide from the uploaded presentation
BLANK_SLIDE = /var/bigbluebutton/blank/blank-slide.swf
BLANK_PRESENTATION = /var/bigbluebutton/blank/blank-presentation.pdf
BLANK_THUMBNAIL = /var/bigbluebutton/blank/blank-thumb.png
2018-04-11 04:06:08 +08:00
BLANK_PNG = /var/bigbluebutton/blank/blank-png.png
2016-11-29 07:21:36 +08:00
#----------------------------------------------------
# Number of minutes the conversion should take. If it takes
# more than this time, cancel the conversion process.
maxConversionTime = 5
#----------------------------------------------------
# Maximum number of pages allowed for an uploaded presentation (default 100).
maxNumPages = 200
2017-11-28 06:03:50 +08:00
#----------------------------------------------------
# Maximum file size for an uploaded presentation (default 30MB).
maxFileSizeUpload = 30000000
2016-11-29 07:21:36 +08:00
#----------------------------------------------------
# Maximum swf file size for load to the client (default 500000).
MAX_SWF_FILE_SIZE = 500000
#----------------------------------------------------
2017-05-12 00:03:24 +08:00
# Maximum allowed number of place object tags in the converted SWF, if exceeded the conversion will fallback to full BMP (default 800)
placementsThreshold = 800
2016-11-29 07:21:36 +08:00
2017-05-12 00:03:24 +08:00
# Maximum allowed number of bitmap images in the converted SWF, if exceeded the conversion will fallback to full BMP (default 800)
imageTagThreshold = 800
2016-11-29 07:21:36 +08:00
2017-05-12 00:03:24 +08:00
# Maximum allowed number of define text tags in the converted SWF, if exceeded the conversion will fallback to full BMP (default 200)
2016-11-29 07:21:36 +08:00
defineTextThreshold = 2000
#------------------------------------
# Number of threads in the pool to do the presentation conversion.
#------------------------------------
numConversionThreads = 2
2019-03-07 02:07:28 +08:00
#----------------------------------------------------
# Conversion of the presentation slides to SWF to be
# used in the Flash client
swfSlidesRequired = true
2016-11-29 07:21:36 +08:00
#----------------------------------------------------
# Additional conversion of the presentation slides to SVG
# to be used in the HTML5 client
svgImagesRequired = false
2018-04-11 04:06:08 +08:00
#----------------------------------------------------
# Additional conversion of the presentation slides to PNG
# to be used in the IOS mobile client
generatePngs = true
pngSlideWidth = 1200
2016-11-29 07:21:36 +08:00
# Default number of digits for voice conference users joining through the PSTN.
defaultNumDigitsForTelVoice = 5
2018-09-11 19:51:03 +08:00
#----------------------------------------------------
# Configuration for large images, 2 MB by default, if bigger it will downscaled
maxImageSize = 2000000
2016-11-29 07:21:36 +08:00
#----------------------------------------------------
# Default dial access number
defaultDialAccessNumber = 613-555-1234
2017-04-19 03:45:32 +08:00
# Default Guest Policy
# Valid values are ALWAYS_ACCEPT, ALWAYS_DENY, ASK_MODERATOR
#
2017-10-04 05:03:16 +08:00
defaultGuestPolicy = ALWAYS_ACCEPT
2017-04-19 03:45:32 +08:00
#
2016-11-29 07:21:36 +08:00
#----------------------------------------------------
# Default welcome message to display when the participant joins the web
# conference. This is only used for the old scheduling which will be
# removed in the future. Use the API to create a conference.
2017-01-27 20:58:45 +08:00
#
# If the message contains characters not in ISO-8859-1 character sets
# they must be properly escaped to unicode characters. An easy way to
# do this is running the native2ascii command setting UTF8 encoding and
# passing this file's path as input and output parameters, e.g.:
#
# native2ascii -encoding UTF8 bigbluebutton.properties bigbluebutton.properties
#
2019-03-23 03:05:50 +08:00
defaultWelcomeMessage = Welcome to <b>%%CONFNAME%%</b>!<br><br>For help on using BigBlueButton see these (short) <a href="event:http://www.bigbluebutton.org/html5"><u>tutorial videos</u></a>.<br><br>To join the audio bridge click the phone button. Use a headset to avoid causing background noise for others.
2016-11-29 07:21:36 +08:00
defaultWelcomeMessageFooter = This server is running <a href="http://docs.bigbluebutton.org/" target="_blank"><u>BigBlueButton</u></a>.
# Default maximum number of users a meeting can have.
# Current default is 0 (meeting doesn't have a user limit).
defaultMaxUsers = 0
# Default duration of the meeting in minutes.
# Current default is 0 (meeting doesn't end).
defaultMeetingDuration = 0
2017-07-16 00:30:02 +08:00
# Number of minutes elapse of no activity before
2019-03-26 01:10:03 +08:00
# ending the meeting. Default zero (0) to disable
# check.
maxInactivityTimeoutMinutes = 0
2017-07-16 00:30:02 +08:00
2017-12-16 06:59:00 +08:00
# Number of minutes to logout client if user
# isn't responsive
clientLogoutTimerInMinutes = 0
2017-07-16 00:30:02 +08:00
# Send warning to moderators to warn that
# meeting would be ended due to inactivity
warnMinutesBeforeMax = 5
2017-07-16 10:10:04 +08:00
# End meeting if no user joined within
# a period of time after meeting created.
meetingExpireIfNoUserJoinedInMinutes = 5
2017-07-16 23:11:48 +08:00
# Number of minutes to end meeting when
# the last user left.
meetingExpireWhenLastUserLeftInMinutes = 1
2018-07-31 01:00:12 +08:00
# User inactivity audit timer interval.
2019-03-26 03:39:09 +08:00
userInactivityInspectTimerInMinutes = 0
2018-07-25 17:56:55 +08:00
2018-07-31 01:00:12 +08:00
# Number of minutes to consider a user inactive.
# iSend warning message to client to check if really inactive.
2018-07-27 22:02:04 +08:00
userInactivityThresholdInMinutes = 30
2018-07-31 01:00:12 +08:00
# Number of minutes for user to respond to inactivity
# warning before being logged out.
2018-07-26 04:14:29 +08:00
userActivitySignResponseDelayInMinutes = 5
2017-07-16 23:11:48 +08:00
2016-11-29 07:21:36 +08:00
# Disable recording by default.
# true - don't record even if record param in the api call is set to record
# false - when record param is passed from api, override this default
disableRecordingDefault = false
# Start recording when first user joins the meeting.
# For backward compatibility with 0.81 where whole meeting
# is recorded.
autoStartRecording = false
# Allow the user to start/stop recording.
allowStartStopRecording = true
2017-01-02 18:53:37 +08:00
# Allow webcams streaming reception only to and from moderators
webcamsOnlyForModerator = false
2017-12-22 02:40:44 +08:00
# Mute the meeting on start
muteOnStart = false
2018-12-12 04:37:31 +08:00
# Saves meeting events even if the meeting is not recorded
keepEvents = false
2016-11-29 07:21:36 +08:00
#----------------------------------------------------
# This URL is where the BBB client is accessible. When a user sucessfully
# enters a name and password, she is redirected here to load the client.
2019-04-05 05:38:53 +08:00
bigbluebutton.web.serverURL = https://ritz-20.blindside-dev.com
2016-11-29 07:21:36 +08:00
#----------------------------------------------------
# Assign URL where the logged-out participant will be redirected after sign-out.
# If "default", it returns to bigbluebutton.web.serverURL
bigbluebutton.web.logoutURL = default
2017-12-01 04:19:03 +08:00
# The url of the BigBlueButton client. Users will be redirected here when
2016-11-29 07:21:36 +08:00
# successfully joining the meeting.
defaultClientUrl = ${bigbluebutton.web.serverURL}/client/BigBlueButton.html
2017-12-01 04:19:03 +08:00
2019-01-09 03:54:08 +08:00
# Allow requests without JSESSIONID to be handled (default = false)
2019-01-09 03:56:50 +08:00
allowRequestsWithoutSession = false
2019-01-09 03:54:08 +08:00
2017-12-01 04:19:03 +08:00
# Force all attendees to join the meeting using the HTML5 client
attendeesJoinViaHTML5Client = false
# Force all moderators to join the meeting using the HTML5 client
moderatorsJoinViaHTML5Client = false
# The url of the BigBlueButton HTML5 client. Users will be redirected here when
# successfully joining the meeting.
html5ClientUrl = ${bigbluebutton.web.serverURL}/html5client/join
2016-11-29 07:21:36 +08:00
2017-09-26 05:12:54 +08:00
# The url for where the guest will poll if approved to join or not.
2017-11-01 03:50:54 +08:00
defaultGuestWaitURL = ${bigbluebutton.web.serverURL}/client/guest-wait.html
2017-09-26 05:12:54 +08:00
2016-11-29 07:21:36 +08:00
# The default avatar image to display if nothing is passed on the JOIN API (avatarURL)
# call. This avatar is displayed if the user isn't sharing the webcam and
# the option (displayAvatar) is enabled in config.xml
defaultAvatarURL = ${bigbluebutton.web.serverURL}/client/avatar.png
# The URL of the default configuration
defaultConfigURL = ${bigbluebutton.web.serverURL}/client/conf/config.xml
2018-02-09 11:22:11 +08:00
apiVersion = 2.0
2016-11-29 07:21:36 +08:00
# Salt which is used by 3rd-party apps to authenticate api calls
2018-06-30 03:27:23 +08:00
securitySalt = 330a8b08c3b4c61533e1d0c5ce1ac88f
2016-11-29 07:21:36 +08:00
# Directory where we drop the <meeting-id-recorded>.done file
recordStatusDir = /var/bigbluebutton/recording/status/recorded
redisHost = 127.0.0.1
redisPort = 6379
2019-05-01 03:30:59 +08:00
redisPassword =
2019-04-05 05:38:53 +08:00
redisKeyExpiry = 1209600
2016-11-29 07:21:36 +08:00
# The directory where the published/unpublised recordings are located. This is for
# the get recording* api calls
publishedDir = /var/bigbluebutton/published
unpublishedDir = /var/bigbluebutton/unpublished
2018-06-30 03:27:23 +08:00
captionsDir = /var/bigbluebutton/captions
2016-11-29 07:21:36 +08:00
# The directory where the pre-built configs are stored
configDir = /var/bigbluebutton/configs
# If the API is enabled.
serviceEnabled = true
# Test voiceBridge number
testVoiceBridge = 99999
testConferenceMock = conference-mock-default
#------------------------------------------------------
# These properties are used to test the conversion process.
# Conference name folder in ${presentationDir} (see above)
beans.presentationService.testConferenceMock = ${testConferenceMock}
# Conference room folder in ${presentationDir}/${testConferenceMock}
beans.presentationService.testRoomMock = conference-mock-default
# Uploaded presentation name
beans.presentationService.testPresentationName = appkonference
# Uploaded presentation file
beans.presentationService.testUploadedPresentation = appkonference.txt
# Default Uploaded presentation file
beans.presentationService.defaultUploadedPresentation = ${bigbluebutton.web.serverURL}/default.pdf
presentationBaseURL = ${bigbluebutton.web.serverURL}/bigbluebutton/presentation
#----------------------------------------------------
# The URL where the presentations will be loaded from.
#----------------------------------------------------
beans.presentationService.presentationBaseUrl = ${presentationBaseURL}
#----------------------------------------------------
# Inject values into grails service beans
beans.presentationService.presentationDir = ${presentationDir}
#----------------------------------------------------
# Specify which IPs can do cross domain requests
accessControlAllowOrigin = ${bigbluebutton.web.serverURL}
#----------------------------------------------------
# The lapsus of seconds for polling the BBB Server in order to check if it's down.
# After 5 tries if there isn't response, it will be declared down
checkBBBServerEvery = 10
2017-07-12 04:31:56 +08:00
2017-07-12 22:43:44 +08:00
# The Red5 server where FS will publish as RTMP stream
2017-07-12 08:29:09 +08:00
screenshareRtmpServer = 192.168.246.131
2017-07-12 22:43:44 +08:00
# The Red5 app that receives the published RTMP stream
2017-07-12 04:31:56 +08:00
screenshareRtmpBroadcastApp = video-broadcast
2017-07-12 22:43:44 +08:00
# The suffix of our verto screenshare conference.
# Convention is {voiceConf}-SCREENSHARE
screenshareConfSuffix = -SCREENSHARE