jitsi-web: add more defaults
This commit is contained in:
parent
55d21c120a
commit
697e91aa05
@ -53,7 +53,22 @@ matrix_jitsi_web_systemd_required_services_list: ['docker.service']
|
|||||||
|
|
||||||
matrix_jitsi_web_config_defaultLanguage: 'en'
|
matrix_jitsi_web_config_defaultLanguage: 'en'
|
||||||
matrix_jitsi_web_interface_config_lang_detection: false
|
matrix_jitsi_web_interface_config_lang_detection: false
|
||||||
|
matrix_jitsi_web_config_start_with_audio_muted: false
|
||||||
|
matrix_jitsi_web_config_start_with_video_muted: false
|
||||||
|
matrix_jitsi_web_interface_config_show_jitsi_watermark: true
|
||||||
|
matrix_jitsi_web_interface_config_jitsi_watermark_link: "https://jitsi.org"
|
||||||
|
matrix_jitsi_web_interface_config_show_brand_watermark: false
|
||||||
|
matrix_jitsi_web_interface_config_brand_watermark_link: ""
|
||||||
|
matrix_jitsi_web_interface_config_show_watermark_for_guests: true
|
||||||
|
matrix_jitsi_web_interface_config_generate_room_names_on_welcome_page: true
|
||||||
|
matrix_jitsi_web_interface_config_display_welcome_page_content: true
|
||||||
|
matrix_jitsi_web_interface_config_app_name: "Jitsi Meet"
|
||||||
|
matrix_jitsi_web_interface_config_native_app_name: "Jitsi Meet"
|
||||||
|
matrix_jitsi_web_interface_config_provider_name: "Jitsi"
|
||||||
|
matrix_jitsi_web_interface_config_invitation_powered_by: true
|
||||||
|
matrix_jitsi_web_interface_config_show_powered_by: false
|
||||||
|
matrix_jitsi_web_interface_config_disable_transcription_subtitles: false
|
||||||
|
matrix_jisti_web_interface_config_show_deep_linking_image: false
|
||||||
|
|
||||||
matrix_jitsi_prosody_docker_image: "jitsi/prosody:4101"
|
matrix_jitsi_prosody_docker_image: "jitsi/prosody:4101"
|
||||||
matrix_jitsi_prosody_docker_image_force_pull: "{{ matrix_jitsi_prosody_docker_image.endswith(':latest') }}"
|
matrix_jitsi_prosody_docker_image_force_pull: "{{ matrix_jitsi_prosody_docker_image.endswith(':latest') }}"
|
||||||
|
@ -93,6 +93,7 @@ var config = {
|
|||||||
// Start calls with audio muted. Unlike the option above, this one is only
|
// Start calls with audio muted. Unlike the option above, this one is only
|
||||||
// applied locally. FIXME: having these 2 options is confusing.
|
// applied locally. FIXME: having these 2 options is confusing.
|
||||||
// startWithAudioMuted: false,
|
// startWithAudioMuted: false,
|
||||||
|
startWithAudioMuted: {{ matrix_jitsi_web_config_start_with_audio_muted|to_json }},
|
||||||
|
|
||||||
// Enabling it (with #params) will disable local audio output of remote
|
// Enabling it (with #params) will disable local audio output of remote
|
||||||
// participants and to enable it back a reload is needed.
|
// participants and to enable it back a reload is needed.
|
||||||
@ -137,6 +138,7 @@ var config = {
|
|||||||
// Start calls with video muted. Unlike the option above, this one is only
|
// Start calls with video muted. Unlike the option above, this one is only
|
||||||
// applied locally. FIXME: having these 2 options is confusing.
|
// applied locally. FIXME: having these 2 options is confusing.
|
||||||
// startWithVideoMuted: false,
|
// startWithVideoMuted: false,
|
||||||
|
startWithVideoMuted: {{ matrix_jitsi_web_config_start_with_video_muted|to_json }},
|
||||||
|
|
||||||
// If set to true, prefer to use the H.264 video codec (if supported).
|
// If set to true, prefer to use the H.264 video codec (if supported).
|
||||||
// Note that it's not recommended to do this because simulcast is not
|
// Note that it's not recommended to do this because simulcast is not
|
||||||
|
@ -16,22 +16,22 @@ var interfaceConfig = {
|
|||||||
TOOLBAR_ALWAYS_VISIBLE: false,
|
TOOLBAR_ALWAYS_VISIBLE: false,
|
||||||
DEFAULT_REMOTE_DISPLAY_NAME: 'Fellow Jitster',
|
DEFAULT_REMOTE_DISPLAY_NAME: 'Fellow Jitster',
|
||||||
DEFAULT_LOCAL_DISPLAY_NAME: 'me',
|
DEFAULT_LOCAL_DISPLAY_NAME: 'me',
|
||||||
SHOW_JITSI_WATERMARK: true,
|
SHOW_JITSI_WATERMARK: {{ matrix_jitsi_web_interface_config_show_jitsi_watermark|to_json }},
|
||||||
JITSI_WATERMARK_LINK: 'https://jitsi.org',
|
JITSI_WATERMARK_LINK: {{ matrix_jitsi_web_interface_config_jitsi_watermark_link|to_json }},
|
||||||
|
|
||||||
// if watermark is disabled by default, it can be shown only for guests
|
// if watermark is disabled by default, it can be shown only for guests
|
||||||
SHOW_WATERMARK_FOR_GUESTS: true,
|
SHOW_WATERMARK_FOR_GUESTS: {{ matrix_jitsi_web_interface_config_show_watermark_for_guests|to_json }},
|
||||||
SHOW_BRAND_WATERMARK: false,
|
SHOW_BRAND_WATERMARK: {{ matrix_jitsi_web_interface_config_show_brand_watermark|to_json }},
|
||||||
BRAND_WATERMARK_LINK: '',
|
BRAND_WATERMARK_LINK: {{ matrix_jitsi_web_interface_config_brand_watermark_link|to_json }},
|
||||||
SHOW_POWERED_BY: false,
|
SHOW_POWERED_BY: {{ matrix_jitsi_web_interface_config_show_powered_by|to_json }},
|
||||||
SHOW_DEEP_LINKING_IMAGE: false,
|
SHOW_DEEP_LINKING_IMAGE: {{ matrix_jisti_web_interface_config_show_deep_linking_image|to_json }},
|
||||||
GENERATE_ROOMNAMES_ON_WELCOME_PAGE: true,
|
GENERATE_ROOMNAMES_ON_WELCOME_PAGE: {{ matrix_jitsi_web_interface_config_generate_room_names_on_welcome_page|to_json }},
|
||||||
DISPLAY_WELCOME_PAGE_CONTENT: true,
|
DISPLAY_WELCOME_PAGE_CONTENT: {{ matrix_jitsi_web_interface_config_display_welcome_page_content|to_json }},
|
||||||
APP_NAME: 'Jitsi Meet',
|
APP_NAME: {{ matrix_jitsi_web_interface_config_app_name|to_json }},
|
||||||
NATIVE_APP_NAME: 'Jitsi Meet',
|
NATIVE_APP_NAME: {{ matrix_jitsi_web_interface_config_native_app_name|to_json }},
|
||||||
PROVIDER_NAME: 'Jitsi',
|
PROVIDER_NAME: {{ matrix_jitsi_web_interface_config_provider_name|to_json }},
|
||||||
LANG_DETECTION: {{ matrix_jitsi_web_interface_config_lang_detection|to_json }}, // Allow i18n to detect the system language
|
LANG_DETECTION: {{ matrix_jitsi_web_interface_config_lang_detection|to_json }}, // Allow i18n to detect the system language
|
||||||
INVITATION_POWERED_BY: true,
|
INVITATION_POWERED_BY: {{ matrix_jitsi_web_interface_config_invitation_powered_by|to_json }},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* If we should show authentication block in profile
|
* If we should show authentication block in profile
|
||||||
@ -92,7 +92,7 @@ var interfaceConfig = {
|
|||||||
*
|
*
|
||||||
* @type {boolean}
|
* @type {boolean}
|
||||||
*/
|
*/
|
||||||
DISABLE_TRANSCRIPTION_SUBTITLES: false,
|
DISABLE_TRANSCRIPTION_SUBTITLES: {{ matrix_jitsi_web_interface_config_disable_transcription_subtitles|to_json }},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Whether the ringing sound in the call/ring overlay is disabled. If
|
* Whether the ringing sound in the call/ring overlay is disabled. If
|
||||||
|
Loading…
Reference in New Issue
Block a user