You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
docker-jitsi-meet/prosody/rootfs/defaults/conf.d/jitsi-meet.cfg.lua

33 lines
862 B

admins = { "${JICOFO_AUTH_USER}@${XMPP_AUTH_DOMAIN}" }
7 years ago
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}"
7 years ago
ssl = {
key = "/config/certs/${XMPP_AUTH_DOMAIN}.key";
certificate = "/config/certs/${XMPP_AUTH_DOMAIN}.crt";
7 years ago
}
authentication = "internal_plain"
Component "${XMPP_MUC_DOMAIN}" "muc"
storage = "none"
7 years ago
Component "jitsi-videobridge.${XMPP_DOMAIN}"
component_secret = "${JVB_COMPONENT_SECRET}"
Component "focus.${XMPP_DOMAIN}"
component_secret = "${JICOFO_COMPONENT_SECRET}"