Skip to content

Commit

Permalink
Merge pull request jitsi#7 from RocketChat/change-to-own
Browse files Browse the repository at this point in the history
Switch to own jitsi meet instance
  • Loading branch information
engelgabriel committed Apr 14, 2020
2 parents 99c92d5 + 30bdbd3 commit d5d10a0
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 16 deletions.
27 changes: 15 additions & 12 deletions config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ var config = {

hosts: {
// XMPP domain.
domain: 'meet.jit.si',
domain: 'meet.jitsi',

// XMPP MUC domain. FIXME: use XEP-0030 to discover it.
muc: 'conference.meet.jit.si',
muc: 'muc.meet.jitsi'

// When using authentication, domain for guest users.
// anonymousdomain: 'guest.example.com',
Expand All @@ -24,11 +24,12 @@ var config = {
// call_control: 'callcontrol.jitsi-meet.example.com',

// Focus component domain. Defaults to focus.<domain>.
focus: 'focus.meet.jit.si'
// focus: 'focus.meet.jit.si'
},

// BOSH URL. FIXME: use XEP-0156 to discover it.
bosh: '//meet.jit.si/http-bind',
// OG bosh: '//meet.jit.si/http-bind',
bosh: '//jitsi-test.cloud.rocket.chat/http-bind',

// Websocket URL
// websocket: 'wss://jitsi-meet.example.com/xmpp-websocket',
Expand All @@ -39,7 +40,8 @@ var config = {
// The real JID of focus participant - can be overridden here
// focusUserJid: 'focus@auth.jitsi-meet.example.com',

externalConnectUrl: '//meet.jit.si/http-pre-bind',
// OG externalConnectUrl: '//meet.jit.si/http-pre-bind',
externalConnectUrl: '//jitsi-test.cloud.rocket.chat/http-pre-bind',

// Testing / experimental features.
//
Expand Down Expand Up @@ -179,7 +181,8 @@ var config = {
// Recording

// Whether to enable file recording or not.
// fileRecordingsEnabled: false,
fileRecordingsEnabled: true,

// Enable the dropbox integration.
// dropbox: {
// appKey: '<APP_KEY>' // Specify your app key here.
Expand All @@ -200,7 +203,7 @@ var config = {
// fileRecordingsServiceSharingEnabled: false,

// Whether to enable live streaming or not.
liveStreamingEnabled: false,
liveStreamingEnabled: true,

// Transcription (in interface_config,
// subtitles and buttons can be configured)
Expand Down Expand Up @@ -370,16 +373,16 @@ var config = {

analytics: {
// The Google Analytics Tracking ID:
// googleAnalyticsTrackingId: 'your-tracking-id-UA-123456-1'
googleAnalyticsTrackingId: 'UA-63218225-8',

// The Amplitude APP Key:
// amplitudeAPPKey: '<APP_KEY>'

// Array of script URLs to load as lib-jitsi-meet "analytics handlers".
// scriptURLs: [
// "libs/analytics-ga.min.js", // google-analytics
scriptURLs: [
'libs/analytics-ga.min.js' // google-analytics
// "https://example.com/my-custom-analytics.js"
// ],
]
},

// Information about the jitsi-meet instance we are connecting to, including
Expand All @@ -391,7 +394,7 @@ var config = {
},

// Decides whether the start/stop recording audio notifications should play on record.
// disableRecordAudioNotification: false,
disableRecordAudioNotification: true,

// Information for the chrome extension banner
// chromeExtensionBanner: {
Expand Down
7 changes: 3 additions & 4 deletions interface_config.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,8 @@ var interfaceConfig = {
DEFAULT_REMOTE_DISPLAY_NAME: 'Fellow User',
DEFAULT_LOCAL_DISPLAY_NAME: 'me',
SHOW_JITSI_WATERMARK: false,
JITSI_WATERMARK_LINK: 'https://jitsi.org',
// if watermark is disabled by default, it can be shown only for guests
SHOW_WATERMARK_FOR_GUESTS: false,
JITSI_WATERMARK_LINK: 'https://rocket.chat',
SHOW_WATERMARK_FOR_GUESTS: false, // if watermark is disabled by default, it can be shown only for guests
SHOW_BRAND_WATERMARK: false,
BRAND_WATERMARK_LINK: '',
SHOW_POWERED_BY: false,
Expand All @@ -29,7 +28,7 @@ var interfaceConfig = {
DISPLAY_WELCOME_PAGE_TOOLBAR_ADDITIONAL_CONTENT: false,
APP_NAME: 'Rocket.Chat',
NATIVE_APP_NAME: 'Rocket.Chat',
PROVIDER_NAME: 'Rocket.Chat',
PROVIDER_NAME: 'Rocket.Chat',
LANG_DETECTION: true, // Allow i18n to detect the system language
INVITATION_POWERED_BY: false,

Expand Down

0 comments on commit d5d10a0

Please sign in to comment.