Update to 2022-12-19 01:00

This commit is contained in:
Daniel Berteaud
2022-12-19 01:00:28 +01:00
parent ff1777c9a6
commit 7559933717
4 changed files with 32 additions and 26 deletions

View File

@@ -1,8 +1,32 @@
# {{ ansible_managed }}
JICOFO_HOST={{ jitsi_xmpp_server }}
JICOFO_DOMAIN={{ jitsi_domain }}
JICOFO_USER={{ jitsi_jicofo_xmpp_user }}
JICOFO_USERDOMAIN={{ jitsi_auth_domain }}
JICOFO_USER_PASS='{{ jitsi_jicofo_xmpp_pass }}'
JICOFO_OPTS=''
JAVA_SYS_PROPS="-Dnet.java.sip.communicator.SC_HOME_DIR_LOCATION={{ jitsi_root_dir }}/etc -Dnet.java.sip.communicator.SC_HOME_DIR_NAME=jicofo"
jicofo {
authentication {
enabled = {{ (jitsi_auth == 'sso' or jitsi_auth == 'ldap') | ternary('true', 'false') }}
type = {{ (jitsi_auth == 'ldap') | ternary('XMPP', 'SHIBBOLETH') }}
}
bridge {
brewery-jid = "JvbBrewery@internal.{{ jitsi_auth_domain }}"
}
jibri {
brewery-jid = "JibriBrewery@internal.{{ jitsi_auth_domain }}"
}
{% if jitsi_jigasi %}
jigasi {
brewery-jid = "JigasiBrewery@internal.{{ jitsi_auth_domain }}"
}
{% endif %}
xmpp {
client {
domain = {{ jitsi_auth_domain }}
xmpp-domain = {{ jitsi_domain }}
username = {{ jitsi_jicofo_xmpp_user }}
password = "{{ jitsi_jicofo_xmpp_pass }}"
client-proxy = focus.{{ jitsi_domain }}
}
}
}

View File

@@ -1,11 +0,0 @@
{% if jitsi_auth == 'sso' %}
org.jitsi.jicofo.auth.URL=shibboleth:default
{% elif jitsi_auth == 'ldap' %}
org.jitsi.jicofo.auth.URL=XMPP:{{ jitsi_domain }}
{% endif %}
org.jitsi.jicofo.BRIDGE_MUC=JvbBrewery@internal.{{ jitsi_auth_domain }}
{% if jitsi_jigasi %}
org.jitsi.jicofo.jigasi.BREWERY=JigasiBrewery@internal.{{ jitsi_auth_domain }}
{% endif %}
org.jitsi.jicofo.jibri.BREWERY=JibriBrewery@internal.{{ jitsi_auth_domain }}
org.jitsi.jicofo.jibri.PENDING_TIMEOUT=90