99c9822f9f
git-svn-id: http://bigbluebutton.googlecode.com/svn/trunk@3364 af16638f-c34d-0410-8cfa-b39d5352b314
80 lines
3.4 KiB
Properties
80 lines
3.4 KiB
Properties
#
|
|
# These are the default properites for BigBlueButton Web application
|
|
|
|
dataSource.url=jdbc:mysql://localhost/bigbluebutton_dev
|
|
dataSource.username=bbb
|
|
dataSource.password=secret
|
|
dataSource.driverClassName =com.mysql.jdbc.Driver
|
|
|
|
#----------------------------------------------------
|
|
# Directory where BigBlueButton stores uploaded slides
|
|
presentationDir=/var/bigbluebutton
|
|
|
|
#----------------------------------------------------
|
|
# Directory where SWFTOOLS (pdf2swf, jpeg2swf, png2swf) are located
|
|
swfToolsDir=/bin
|
|
|
|
#----------------------------------------------------
|
|
# Directory where ImageMagick's convert executable is located
|
|
imageMagickDir=/usr/bin
|
|
|
|
#----------------------------------------------------
|
|
# Use fullpath to ghostscript executable since the exec names are different
|
|
# for each platform.
|
|
ghostScriptExec=/usr/bin/gs
|
|
|
|
#----------------------------------------------------
|
|
# Fonts directory passed into PDF2SWF to support highlighting of texts
|
|
# in the SWF slides.
|
|
fontsDir=/usr/share/fonts
|
|
|
|
#----------------------------------------------------
|
|
# 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
|
|
|
|
#----------------------------------------------------
|
|
# 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_THUMBNAIL=/var/bigbluebutton/blank/blank-thumb.png
|
|
|
|
#----------------------------------------------------
|
|
# 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=100
|
|
|
|
#----------------------------------------------------
|
|
# Default dial access number
|
|
defaultDialAccessNumber=613-555-1234
|
|
|
|
#----------------------------------------------------
|
|
# 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.
|
|
defaultWelcomeMessage=<br>Welcome to BigBlueButton.<br><br>To give feedback on this project, please post to the BigBlueButton mailing list at http://groups.google.com/group/bigbluebutton-dev/topics?gvc=2.
|
|
|
|
#----------------------------------------------------
|
|
# Inject values into grails service beans
|
|
beans.presentationService.presentationDir=${presentationDir}
|
|
beans.dynamicConferenceService.serviceEnabled=true
|
|
beans.dynamicConferenceService.securitySalt=639259d4-9dd8-4b25-bf01-95f9567eaf4b
|
|
beans.dynamicConferenceService.defaultWelcomeMessage=${defaultWelcomeMessage}
|
|
beans.dynamicConferenceService.defaultDialAccessNumber=${defaultDialAccessNumber}
|
|
|
|
#----------------------------------------------------
|
|
# 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.
|
|
bigbluebutton.web.serverURL=http://192.168.0.120
|
|
|
|
#----------------------------------------------------
|
|
# URL where the logged-out participant will be redirected after sign-out.
|
|
# If commented-out, it returns to bigbluebutton.web.serverURL
|
|
# bigbluebutton.web.loggedOutUrl=http://www.bigbluebutton.org
|
|
|
|
|