Add local Jitsi Docker staging setup
This commit is contained in:
70
local/custom-config.js
Normal file
70
local/custom-config.js
Normal file
@@ -0,0 +1,70 @@
|
||||
|
||||
// PoliticTalk local Docker overrides.
|
||||
// Docker Jitsi appends this file after generating /config/config.js.
|
||||
|
||||
config.defaultLogoUrl = '/images/politictalk/pgLogo.svg';
|
||||
config.dynamicBrandingUrl = '/images/politictalk/branding.json';
|
||||
|
||||
config.startAudioOnly = true;
|
||||
config.startAudioMuted = 0;
|
||||
config.startWithAudioMuted = true;
|
||||
config.startVideoMuted = 0;
|
||||
config.startWithVideoMuted = true;
|
||||
|
||||
config.disableSelfView = true;
|
||||
config.disableSelfViewSettings = true;
|
||||
config.disableLocalVideoFlip = true;
|
||||
|
||||
config.disableChat = false;
|
||||
config.disablePolls = false;
|
||||
config.disableInviteFunctions = true;
|
||||
config.doNotStoreRoom = true;
|
||||
|
||||
config.enableEncodedTransformSupport = true;
|
||||
config.enableNoisyMicDetection = true;
|
||||
config.disableRemoteMute = false;
|
||||
|
||||
config.prejoinConfig = {
|
||||
enabled: true,
|
||||
hideDisplayName: false,
|
||||
hideExtraJoinButtons: ['no-audio', 'by-phone'],
|
||||
preCallTestEnabled: false,
|
||||
preCallTestICEUrl: '',
|
||||
showHangUp: true
|
||||
};
|
||||
|
||||
config.toolbarButtons = [
|
||||
'microphone',
|
||||
'chat',
|
||||
'raisehand',
|
||||
'fullscreen',
|
||||
'noisesuppression',
|
||||
'participants-pane',
|
||||
'hangup'
|
||||
];
|
||||
|
||||
config.hiddenPremeetingButtons = [
|
||||
'microphone',
|
||||
'camera',
|
||||
'select-background',
|
||||
'invite',
|
||||
'settings'
|
||||
];
|
||||
|
||||
config.participantsPane = {
|
||||
enabled: true,
|
||||
hideModeratorSettingsTab: false,
|
||||
hideMoreActionsButton: false,
|
||||
hideMuteAllButton: false
|
||||
};
|
||||
|
||||
config.e2ee = {
|
||||
externallyManagedKey: false,
|
||||
disabled: false,
|
||||
labels: {
|
||||
label: 'End-to-end encryption',
|
||||
description: 'End-to-end encryption protects media between participants.',
|
||||
tooltip: 'End-to-end encryption',
|
||||
warning: 'Some features may be limited while encryption is enabled.'
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user