2012-10-11 23:52:41 +08:00
|
|
|
#
|
2012-10-25 04:04:40 +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/>.
|
|
|
|
#
|
|
|
|
#
|
2012-10-11 23:52:41 +08:00
|
|
|
# These are the default properites for the BigBlueButton LTI interface
|
|
|
|
|
2012-10-17 01:46:29 +08:00
|
|
|
# BigBlueButton integration information
|
2012-10-11 23:52:41 +08:00
|
|
|
#----------------------------------------------------
|
2012-10-13 04:01:27 +08:00
|
|
|
# This URL is where the BBB client is accessible.
|
2013-05-01 04:28:49 +08:00
|
|
|
bigbluebuttonURL=http://localhost/bigbluebutton
|
2012-10-11 23:52:41 +08:00
|
|
|
# Salt which is used by 3rd-party apps to authenticate api calls
|
2013-05-01 04:28:49 +08:00
|
|
|
bigbluebuttonSalt=bbb_salt
|
2012-10-16 23:43:20 +08:00
|
|
|
|
2012-10-17 01:46:29 +08:00
|
|
|
# LTI basic information
|
|
|
|
#----------------------------------------------------
|
2014-08-29 06:10:34 +08:00
|
|
|
# This URL is where the LTI plugin is accessible. It can be a different server than the BigBluebutton one
|
|
|
|
# Only the hostname or IP address is required, plus the port number in case it is other than port 80
|
|
|
|
# e.g. localhost or localhost:port
|
|
|
|
ltiEndPoint=localhost
|
2012-10-17 01:46:29 +08:00
|
|
|
# The list of consumers allowed to access this lti service.
|
2016-03-04 04:56:54 +08:00
|
|
|
# Format: {consumerId1:sharedSecret1,consumerId2:sharedSecret2,consumerIdN:sharedSecretN}
|
2014-03-27 03:45:05 +08:00
|
|
|
##ltiConsumers=bbb:bbb_salt
|
|
|
|
ltiConsumers=bbb:welcome
|
2013-01-24 06:46:31 +08:00
|
|
|
# The mode used to interact with BigBlueButton
|
|
|
|
# Format: [<simple>|extended]
|
|
|
|
ltiMode=extended
|
2016-03-04 04:56:54 +08:00
|
|
|
# Defines if LTI credentials are required
|
|
|
|
# Format: [false|<true>]
|
|
|
|
ltiRestrictedAccess=true
|
2013-01-24 06:46:31 +08:00
|
|
|
|
2012-10-11 23:52:41 +08:00
|
|
|
#----------------------------------------------------
|
2012-10-17 01:46:29 +08:00
|
|
|
# Inject configuration values into BigbluebuttonSrvice beans
|
2012-10-13 04:01:27 +08:00
|
|
|
beans.bigbluebuttonService.url=${bigbluebuttonURL}
|
|
|
|
beans.bigbluebuttonService.salt=${bigbluebuttonSalt}
|
2012-10-11 23:52:41 +08:00
|
|
|
|
2012-10-17 01:46:29 +08:00
|
|
|
#----------------------------------------------------
|
|
|
|
# Inject configuration values into LtiSrvice beans
|
|
|
|
beans.ltiService.endPoint=${ltiEndPoint}
|
|
|
|
beans.ltiService.consumers=${ltiConsumers}
|
2013-01-24 06:46:31 +08:00
|
|
|
beans.ltiService.mode=${ltiMode}
|
2016-03-04 04:56:54 +08:00
|
|
|
beans.ltiService.restrictedAccess=${ltiRestrictedAccess}
|
2012-10-16 23:43:20 +08:00
|
|
|
|