Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
LQDN Adminsys
piops-roles
Matrix Docker Ansible Deploy
Commits
7fc1a94c
Unverified
Commit
7fc1a94c
authored
Aug 30, 2021
by
Slavi Pantaleev
Committed by
GitHub
Aug 30, 2021
Browse files
Merge pull request #1258 from sakkiii/jitsi-fix
Jitsi Update (stable-5963 -> stable-6173)
parents
9d06dd61
d3e2574d
Changes
3
Hide whitespace changes
Inline
Side-by-side
docs/configuring-playbook-jitsi.md
View file @
7fc1a94c
...
...
@@ -26,7 +26,6 @@ matrix_jitsi_enabled: true
# Run `bash inventory/scripts/jitsi-generate-passwords.sh` to generate these passwords,
# or define your own strong passwords manually.
matrix_jitsi_jicofo_component_secret
:
"
"
matrix_jitsi_jicofo_auth_password
:
"
"
matrix_jitsi_jvb_auth_password
:
"
"
matrix_jitsi_jibri_recorder_password
:
"
"
...
...
roles/matrix-jitsi/defaults/main.yml
View file @
7fc1a94c
...
...
@@ -7,6 +7,7 @@ matrix_jitsi_enable_guests: false
matrix_jitsi_enable_recording
:
false
matrix_jitsi_enable_transcriptions
:
false
matrix_jitsi_enable_p2p
:
true
matrix_jitsi_enable_av_moderation
:
true
# Authentication type, must be one of internal, jwt or ldap. Currently only
# internal and ldap are supported by this playbook.
...
...
@@ -53,7 +54,7 @@ matrix_jitsi_jibri_recorder_password: ''
matrix_jitsi_enable_lobby
:
false
matrix_jitsi_version
:
stable-
596
3
matrix_jitsi_version
:
stable-
617
3
matrix_jitsi_container_image_tag
:
"
{{
matrix_jitsi_version
}}"
# for backward-compatibility
matrix_jitsi_web_docker_image
:
"
{{
matrix_container_global_registry_prefix
}}jitsi/web:{{
matrix_jitsi_container_image_tag
}}"
...
...
@@ -69,6 +70,14 @@ matrix_jitsi_web_public_url: "https://{{ matrix_server_fqn_jitsi }}"
# Addresses need to be prefixed with one of `stun:`, `turn:` or `turns:`.
matrix_jitsi_web_stun_servers
:
[
'
stun:meet-jit-si-turnrelay.jitsi.net:443'
]
# Setting up TURN
# Default set with Coturn container
matrix_jitsi_turn_credentials
:
"
{{
matrix_coturn_turn_static_auth_secret
}}"
matrix_jitsi_turn_host
:
"
turn.{{
matrix_server_fqn_matrix
}}"
matrix_jitsi_turns_host
:
"
turn.{{
matrix_server_fqn_matrix
}}"
matrix_jitsi_turn_port
:
"
{{
matrix_coturn_container_stun_plain_host_bind_port
}}"
matrix_jitsi_turns_port
:
"
{{
matrix_coturn_container_stun_tls_host_bind_port
}}"
# Controls whether Etherpad will be available within Jitsi
matrix_jitsi_etherpad_enabled
:
false
...
...
roles/matrix-jitsi/templates/prosody/env.j2
View file @
7fc1a94c
...
...
@@ -2,6 +2,7 @@ AUTH_TYPE={{ matrix_jitsi_auth_type }}
ENABLE_AUTH={{ 1 if matrix_jitsi_enable_auth else 0 }}
ENABLE_GUESTS={{ 1 if matrix_jitsi_enable_guests else 0 }}
ENABLE_LOBBY={{ 1 if matrix_jitsi_enable_lobby else 0 }}
ENABLE_AV_MODERATION={{1 if matrix_jitsi_enable_av_moderation else 0}}
ENABLE_XMPP_WEBSOCKET
GLOBAL_MODULES
GLOBAL_CONFIG
...
...
@@ -48,4 +49,9 @@ JWT_AUTH_TYPE
JWT_TOKEN_AUTH_MODULE
LOG_LEVEL
PUBLIC_URL={{ matrix_jitsi_web_public_url }}
TURN_CREDENTIALS={{ matrix_jitsi_turn_credentials }}
TURN_HOST={{ matrix_jitsi_turn_host }}
TURNS_HOST={{ matrix_jitsi_turns_host }}
TURN_PORT={{ matrix_jitsi_turn_port }}
TURNS_PORT={{ matrix_jitsi_turns_port }}
TZ={{ matrix_jitsi_timezone }}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment