Browse Source

fix jitsi guests mode according to docker-jitsi-meet repo

pull/432/head
teutat3s 6 years ago
parent
commit
4ed0632327
No known key found for this signature in database GPG Key ID: 18DAE600A6BBE705
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      roles/matrix-jitsi/templates/web/config.js.j2

+ 3
- 1
roles/matrix-jitsi/templates/web/config.js.j2 View File

@@ -18,9 +18,11 @@ var config = {
// XMPP domain.
domain: '{{ matrix_jitsi_xmpp_domain }}',

{% if matrix_jitsi_enable_auth %}
{% if matrix_jitsi_enable_guests %}
// When using authentication, domain for guest users.
anonymousdomain: 'guest.example.com',
anonymousdomain: '{{ matrix_jitsi_xmpp_guest_domain }}',
{% endif %}

// Domain for authenticated users. Defaults to <domain>.
authdomain: '{{ matrix_jitsi_xmpp_domain }}',


Loading…
Cancel
Save