Files
jitsi-meet-deployment/prosody/rootfs/defaults/conf.d/jitsi-meet.cfg.lua
Saúl Ibarra Corretgé 1d22539aac xmpp: set storage backend to "none"
"null" seems to have stopped working.
2018-07-17 11:14:48 +02:00

33 lines
862 B
Lua

admins = { "${JICOFO_AUTH_USER}@${XMPP_AUTH_DOMAIN}" }
VirtualHost "${XMPP_DOMAIN}"
authentication = "anonymous"
ssl = {
key = "/config/certs/${XMPP_DOMAIN}.key";
certificate = "/config/certs/${XMPP_DOMAIN}.crt";
}
modules_enabled = {
"bosh";
"pubsub";
"ping";
}
c2s_require_encryption = false
VirtualHost "${XMPP_AUTH_DOMAIN}"
ssl = {
key = "/config/certs/${XMPP_AUTH_DOMAIN}.key";
certificate = "/config/certs/${XMPP_AUTH_DOMAIN}.crt";
}
authentication = "internal_plain"
Component "${XMPP_MUC_DOMAIN}" "muc"
storage = "none"
Component "jitsi-videobridge.${XMPP_DOMAIN}"
component_secret = "${JVB_COMPONENT_SECRET}"
Component "focus.${XMPP_DOMAIN}"
component_secret = "${JICOFO_COMPONENT_SECRET}"