prosody: fix enabling the token_verification module

Fixes: https://github.com/jitsi/jitsi-meet/issues/4349
pull/125/head
Saúl Ibarra Corretgé 5 years ago
parent 85c79cfb2b
commit f809afe7ed
  1. 2
      prosody/rootfs/defaults/conf.d/jitsi-meet.cfg.lua

@ -77,7 +77,7 @@ Component "{{ .Env.XMPP_MUC_DOMAIN }}" "muc"
{{ if .Env.XMPP_MUC_MODULES }}
"{{ join "\";\n\"" (splitList "," .Env.XMPP_MUC_MODULES) }}";
{{ end }}
{{ if .Env.JWT_ENABLE_TOKEN_AUTH | default "0" | toBool }}
{{ if eq $AUTH_TYPE "jwt" }}
"token_verification";
{{ end }}
}

Loading…
Cancel
Save