Correct jitsi-meet config file

This config file was auto-generated from an earlier attempt and
mistakenly used 'localhost.localdomain' rather than just 'localhost'.

Change-Id: I761fe24e50e299f78f9ee1b07aefb527c8b2ed44
This commit is contained in:
James E. Blair 2020-03-27 15:41:19 -07:00
parent 50391bcfad
commit 7dafce1337
1 changed files with 9 additions and 9 deletions

View File

@ -16,25 +16,25 @@ var config = {
hosts: { hosts: {
// XMPP domain. // XMPP domain.
domain: 'localhost.localdomain', domain: 'localhost',
// When using authentication, domain for guest users. // When using authentication, domain for guest users.
// anonymousdomain: 'guest.example.com', // anonymousdomain: 'guest.example.com',
// Domain for authenticated users. Defaults to <domain>. // Domain for authenticated users. Defaults to <domain>.
// authdomain: 'localhost.localdomain', // authdomain: 'localhost',
// Jirecon recording component domain. // Jirecon recording component domain.
// jirecon: 'jirecon.localhost.localdomain', // jirecon: 'jirecon.localhost',
// Call control component (Jigasi). // Call control component (Jigasi).
// call_control: 'callcontrol.localhost.localdomain', // call_control: 'callcontrol.localhost',
// Focus component domain. Defaults to focus.<domain>. // Focus component domain. Defaults to focus.<domain>.
// focus: 'focus.localhost.localdomain', // focus: 'focus.localhost',
// XMPP MUC domain. FIXME: use XEP-0030 to discover it. // XMPP MUC domain. FIXME: use XEP-0030 to discover it.
muc: 'muc.localhost.localdomain', muc: 'muc.localhost',
}, },
// BOSH URL. FIXME: use XEP-0156 to discover it. // BOSH URL. FIXME: use XEP-0156 to discover it.
@ -44,7 +44,7 @@ var config = {
clientNode: 'http://jitsi.org/jitsimeet', clientNode: 'http://jitsi.org/jitsimeet',
// The real JID of focus participant - can be overridden here // The real JID of focus participant - can be overridden here
focusUserJid: 'focus@auth.localhost.localdomain', focusUserJid: 'focus@auth.localhost',
// Testing / experimental features. // Testing / experimental features.
@ -180,9 +180,9 @@ var config = {
// appKey: '<APP_KEY>' // Specify your app key here. // appKey: '<APP_KEY>' // Specify your app key here.
// // A URL to redirect the user to, after authenticating // // A URL to redirect the user to, after authenticating
// // by default uses: // // by default uses:
// // 'https://localhost.localdomain/static/oauth.html' // // 'https://localhost/static/oauth.html'
// redirectURI: // redirectURI:
// 'https://localhost.localdomain/subfolder/static/oauth.html' // 'https://localhost/subfolder/static/oauth.html'
// }, // },
// When integrations like dropbox are enabled only that will be shown, // When integrations like dropbox are enabled only that will be shown,
// by enabling fileRecordingsServiceEnabled, we show both the integrations // by enabling fileRecordingsServiceEnabled, we show both the integrations