mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-08-01 22:35:47 +02:00
Update to 2024-07-22 10:00
This commit is contained in:
@@ -2,8 +2,17 @@
|
||||
jicofo {
|
||||
|
||||
authentication {
|
||||
enabled = {{ (jitsi_auth == 'sso' or jitsi_auth == 'ldap') | ternary('true', 'false') }}
|
||||
type = {{ (jitsi_auth == 'ldap') | ternary('XMPP', 'SHIBBOLETH') }}
|
||||
{% if jitsi_auth == 'sso' %}
|
||||
enabled = true
|
||||
type = SHIBBOLETH
|
||||
{% elif jitsi_auth == 'ldap' %}
|
||||
enabled = true
|
||||
type = XMPP
|
||||
{% elif jitsi_auth == 'token' %}
|
||||
enabled = true
|
||||
type = JWT
|
||||
login-url = {{ jitsi_domain }}
|
||||
{% endif %}
|
||||
}
|
||||
|
||||
bridge {
|
||||
@@ -28,5 +37,6 @@ jicofo {
|
||||
password = "{{ jitsi_jicofo_xmpp_pass }}"
|
||||
client-proxy = focus.{{ jitsi_domain }}
|
||||
}
|
||||
trusted-domains = ["{{ jitsi_jibri_xmpp_domain | default('recorder.' ~ jitsi_jibri_domain) }}"]
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user