Преглед изворни кода

changed var name from jitsi_max_participants to matrix_prosody_jitsi_max_participants

pull/2323/head
rhys пре 3 година
родитељ
комит
de101b351c
3 измењених фајлова са 4 додато и 4 уклоњено
  1. +1
    -1
      docs/configuring-playbook-jitsi.md
  2. +1
    -1
      roles/custom/matrix-jitsi/defaults/main.yml
  3. +2
    -2
      roles/custom/matrix-jitsi/templates/prosody/env.j2

+ 1
- 1
docs/configuring-playbook-jitsi.md Прегледај датотеку

@@ -134,7 +134,7 @@ The playbook allows a user to set a max number of participants allowed to join a
In order to set the max number of participants add the following variable to your `inventory/host_vars/matrix.DOMAIN/vars.yml` configuration:

```
jitsi_max_participants: <INTEGER OF MAX PARTICPANTS>
matrix_prosody_jitsi_max_participants: <INTEGER OF MAX PARTICPANTS>
```

## (Optional) Additional JVBs


+ 1
- 1
roles/custom/matrix-jitsi/defaults/main.yml Прегледај датотеку

@@ -281,4 +281,4 @@ matrix_jitsi_jvb_container_colibri_ws_host_bind_port: ''
# Default max participants to the empty string
#
# The setting requires an integer to be set for usage and allows a user to specify the max number of particpants on a conference.
jitsi_max_participants: ''
matrix_prosody_jitsi_max_participants: ''

+ 2
- 2
roles/custom/matrix-jitsi/templates/prosody/env.j2 Прегледај датотеку

@@ -58,6 +58,6 @@ XMPP_MUC_MODULES=
XMPP_INTERNAL_MUC_MODULES=
XMPP_RECORDER_DOMAIN={{ matrix_jitsi_recorder_domain }}
XMPP_CROSS_DOMAIN=true
{% if jitsi_max_participants is number %}
MAX_PARTICIPANTS={{ jitsi_max_participants }}
{% if matrix_prosody_jitsi_max_participants is number %}
MAX_PARTICIPANTS={{ matrix_prosody_jitsi_max_participants }}
{% endif %}

Loading…
Откажи
Сачувај