bigbluebutton-Github/bbb-webhooks/config_local.js.example

30 lines
970 B
Plaintext
Raw Normal View History

// Local configuration file
const config = {};
// Shared secret of your BigBlueButton server.
config.bbb = {};
config.bbb.sharedSecret = "mysharedsecret";
2017-11-02 03:08:25 +08:00
// Whether to use Auth2.0 or not, Auth2.0 sends the sharedSecret whithin an Authorization header as a bearer
2018-01-09 00:16:51 +08:00
config.bbb.auth2_0 = false
// The port in which the API server will run.
config.server = {};
config.server.port = 3005;
// Callbacks will be triggered for all the events in this list and only for these events.
2017-11-02 03:08:25 +08:00
//config.hooks = {};
//config.hooks.channels = {
// mainChannel: 'from-akka-apps-redis-channel',
// rapChannel: 'bigbluebutton:from-rap',
// chatChannel: 'from-akka-apps-chat-redis-channel'
//}
2017-11-07 02:43:45 +08:00
// IP where permanent hook will post data (more than 1 URL means more than 1 permanent hook)
2017-11-02 03:08:25 +08:00
//config.hooks.permanentURLs = ["request.catcher.url", "another.request.catcher.url"]
// Allow global hook to receive all events with raw data
2017-11-02 03:08:25 +08:00
//config.hooks.getRaw = false;
module.exports = config;