2013-01-19 07:24:35 +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/>.
#
2009-11-15 08:27:43 +08:00
#
# These are the default properites for BigBlueButton Web application
2010-01-08 06:22:58 +08:00
#----------------------------------------------------
2009-11-15 08:27:43 +08:00
# Directory where BigBlueButton stores uploaded slides
presentationDir = /var/bigbluebutton
2010-01-08 06:22:58 +08:00
#----------------------------------------------------
2009-11-15 08:27:43 +08:00
# Directory where SWFTOOLS (pdf2swf, jpeg2swf, png2swf) are located
swfToolsDir = /bin
2010-01-08 06:22:58 +08:00
#----------------------------------------------------
2009-11-15 08:27:43 +08:00
# Directory where ImageMagick's convert executable is located
imageMagickDir = /usr/bin
2010-01-08 06:22:58 +08:00
#----------------------------------------------------
2009-11-15 08:27:43 +08:00
# Use fullpath to ghostscript executable since the exec names are different
# for each platform.
ghostScriptExec = /usr/bin/gs
2010-01-08 06:22:58 +08:00
#----------------------------------------------------
2010-01-08 03:41:03 +08:00
# Fonts directory passed into PDF2SWF to support highlighting of texts
# in the SWF slides.
fontsDir = /usr/share/fonts
2010-01-08 06:22:58 +08:00
#----------------------------------------------------
2009-11-15 08:27:43 +08:00
# This is a workaround for a problem converting PDF files, referenced at
# http://groups.google.com/group/comp.lang.postscript/browse_thread/thread/c2e264ca76534ce0?pli=1
noPdfMarkWorkaround = /etc/bigbluebutton/nopdfmark.ps
2010-01-08 06:22:58 +08:00
#----------------------------------------------------
2009-11-15 08:27:43 +08:00
# These will be copied in cases where the conversion process
# fails to generate a slide from the uploaded presentation
2009-11-21 11:34:43 +08:00
BLANK_SLIDE = /var/bigbluebutton/blank/blank-slide.swf
BLANK_THUMBNAIL = /var/bigbluebutton/blank/blank-thumb.png
2009-11-15 08:27:43 +08:00
2010-01-08 06:22:58 +08:00
#----------------------------------------------------
2009-12-29 03:38:08 +08:00
# Number of minutes the conversion should take. If it takes
# more than this time, cancel the conversion process.
maxConversionTime = 5
2010-01-08 06:22:58 +08:00
#----------------------------------------------------
2010-01-03 06:39:35 +08:00
# Maximum number of pages allowed for an uploaded presentation (default 100).
2012-03-09 01:21:35 +08:00
maxNumPages = 200
2010-01-03 02:57:30 +08:00
2013-01-24 05:01:01 +08:00
#----------------------------------------------------
# Maximum swf file size for load to the client (default 500000).
MAX_SWF_FILE_SIZE = 500000
2011-05-31 22:05:09 +08:00
# Default number of digits for voice conference users joining through the PSTN.
2011-06-01 03:23:44 +08:00
defaultNumDigitsForTelVoice = 5
2011-05-31 22:05:09 +08:00
2010-01-08 23:51:43 +08:00
#----------------------------------------------------
# Default dial access number
2010-01-15 00:08:06 +08:00
defaultDialAccessNumber = 613-555-1234
2010-01-08 23:51:43 +08:00
2010-01-08 06:22:58 +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.
2013-06-16 22:19:32 +08:00
defaultWelcomeMessage = <br>Welcome to <b>%%CONFNAME%%</b>!<br><br>For help on using BigBlueButton see these (short) <a href="event:http://www.bigbluebutton.org/content/videos"><u>tutorial videos</u></a>.<br><br>To join the audio bridge click the headset icon (upper-left hand corner). Use a headset to avoid causing background noise for others.<br>
2013-11-08 09:08:36 +08:00
defaultWelcomeMessageFooter = This server is running <a href="https://code.google.com/p/bigbluebutton/wiki/081Overview" target="_blank"><u>BigBlueButton 0.81</u></a>.
2010-01-08 06:22:58 +08:00
2011-05-31 04:26:11 +08:00
# Default maximum number of users a meeting can have.
# Doesn't get enforced yet but is the default value when the create
# API doesn't pass a value.
defaultMaxUsers = 20
2010-01-08 06:22:58 +08:00
2011-06-22 02:16:37 +08:00
# Default duration of the meeting in minutes.
2011-07-20 03:27:18 +08:00
# Current default is 0 (meeting doesn't end).
defaultMeetingDuration = 0
2011-06-22 02:16:37 +08:00
2011-07-20 04:03:36 +08:00
# Remove the meeting from memory when the end API is called.
# This allows 3rd-party apps to recycle the meeting right-away
# instead of waiting for the meeting to expire (see below).
2012-01-20 10:21:19 +08:00
removeMeetingWhenEnded = true
2011-07-20 04:03:36 +08:00
# The number of minutes before the system removes the meeting from memory.
2011-07-23 23:13:29 +08:00
defaultMeetingExpireDuration = 1
# The number of minutes the system waits when a meeting is created and when
# a user joins. If after this period, a user hasn't joined, the meeting is
# removed from memory.
defaultMeetingCreateJoinDuration = 5
2011-07-20 04:03:36 +08:00
2012-03-30 00:26:10 +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
2010-01-08 06:22:58 +08:00
#----------------------------------------------------
2009-11-15 08:27:43 +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.
2013-06-07 03:16:32 +08:00
bigbluebutton.web.serverURL = http://192.168.153.139
2009-11-15 08:27:43 +08:00
2010-01-08 06:22:58 +08:00
#----------------------------------------------------
2010-06-30 01:31:30 +08:00
# Assign URL where the logged-out participant will be redirected after sign-out.
2012-01-10 07:23:44 +08:00
# If "default", it returns to bigbluebutton.web.serverURL
bigbluebutton.web.logoutURL = default
2010-02-04 02:58:51 +08:00
2011-06-01 03:23:44 +08:00
# The url of the BigBlueButton client. User's will be redirected here when
# successfully joining the meeting.
defaultClientUrl = ${bigbluebutton.web.serverURL}/client/BigBlueButton.html
2012-12-09 08:23:33 +08:00
#defaultClientUrl=http://192.168.0.235/3rd-party.html
2011-06-01 03:23:44 +08:00
2012-12-05 03:09:03 +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
2012-12-09 08:23:33 +08:00
# The URL of the default configuration
defaultConfigURL = ${bigbluebutton.web.serverURL}/client/conf/config.xml
2013-05-26 03:31:33 +08:00
apiVersion = 0.81
2011-06-24 02:04:00 +08:00
# Salt which is used by 3rd-party apps to authenticate api calls
2013-06-07 03:16:32 +08:00
securitySalt = 873b4c35e992f3e54c374412082934b6
2011-06-24 02:04:00 +08:00
# Directory where we drop the <meeting-id-recorded>.done file
recordStatusDir = /var/bigbluebutton/recording/status/recorded
2011-07-11 01:23:01 +08:00
redisHost = 127.0.0.1
2011-06-24 02:04:00 +08:00
redisPort = 6379
# 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
# If the API is enabled.
serviceEnabled = true
# Test voiceBridge number
testVoiceBridge = 99999
testConferenceMock = conference-mock-default
2010-02-04 02:58:51 +08:00
#------------------------------------------------------
# These properties are used to test the conversion process.
# Conference name folder in ${presentationDir} (see above)
2011-06-24 02:04:00 +08:00
beans.presentationService.testConferenceMock = ${testConferenceMock}
2010-02-04 02:58:51 +08:00
# Conference room folder in ${presentationDir}/${testConferenceMock}
2010-02-09 03:11:05 +08:00
beans.presentationService.testRoomMock = conference-mock-default
2010-02-04 02:58:51 +08:00
# Uploaded presentation name
beans.presentationService.testPresentationName = appkonference
# Uploaded presentation file
beans.presentationService.testUploadedPresentation = appkonference.txt
2012-01-11 00:25:46 +08:00
# Default Uploaded presentation file
beans.presentationService.defaultUploadedPresentation = ${bigbluebutton.web.serverURL}/default.pdf
2011-05-31 04:26:11 +08:00
#----------------------------------------------------
# Inject values into grails service beans
beans.presentationService.presentationDir = ${presentationDir}
2011-06-24 02:04:00 +08:00
2013-06-26 02:29:28 +08:00
#----------------------------------------------------
# Specify which IPs can do cross domain requests
accessControlAllowOrigin = ${bigbluebutton.web.serverURL}
2011-06-24 02:04:00 +08:00
2013-06-26 07:26:49 +08:00
#----------------------------------------------------
# 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