mirror of
https://github.com/YunoHost-Apps/jitsi_ynh.git
synced 2024-09-03 19:35:57 +02:00
metronome.cfg.lua: fix configuration.
This commit is contained in:
parent
efa8c8aec7
commit
edcbf65263
1 changed files with 8 additions and 8 deletions
|
@ -63,7 +63,6 @@ cross_domain_bosh = false;
|
||||||
consider_bosh_secure = true;
|
consider_bosh_secure = true;
|
||||||
|
|
||||||
VirtualHost "__DOMAIN__"
|
VirtualHost "__DOMAIN__"
|
||||||
-- enabled = false -- Remove this line to enable this host
|
|
||||||
authentication = "anonymous"
|
authentication = "anonymous"
|
||||||
-- Properties below are modified by jitsi-meet-tokens package config
|
-- Properties below are modified by jitsi-meet-tokens package config
|
||||||
-- and authentication above is switched to "token"
|
-- and authentication above is switched to "token"
|
||||||
|
@ -86,6 +85,7 @@ VirtualHost "__DOMAIN__"
|
||||||
"speakerstats";
|
"speakerstats";
|
||||||
"turncredentials";
|
"turncredentials";
|
||||||
"conference_duration";
|
"conference_duration";
|
||||||
|
"extdisco";
|
||||||
}
|
}
|
||||||
c2s_require_encryption = false
|
c2s_require_encryption = false
|
||||||
external_services = {
|
external_services = {
|
||||||
|
@ -98,25 +98,25 @@ VirtualHost "__DOMAIN__"
|
||||||
}
|
}
|
||||||
|
|
||||||
Component "conference.__DOMAIN__" "muc"
|
Component "conference.__DOMAIN__" "muc"
|
||||||
storage = "null"
|
|
||||||
modules_enabled = {
|
modules_enabled = {
|
||||||
"muc_meeting_id";
|
"muc_meeting_id";
|
||||||
"muc_domain_mapper";
|
"muc_domain_mapper";
|
||||||
-- "token_verification";
|
-- "token_verification";
|
||||||
}
|
}
|
||||||
admins = { "__FOCUS_USER__@auth.__DOMAIN__" }
|
admins = { "__FOCUS_USER__@auth.__DOMAIN__" }
|
||||||
muc_room_locking = false
|
allow_anonymous_creation = true
|
||||||
muc_room_default_public_jids = true
|
instant_room_on_creation = true
|
||||||
|
room_default_whois = "anyone"
|
||||||
|
|
||||||
-- internal muc component
|
-- internal muc component
|
||||||
Component "internal.auth.__DOMAIN__" "muc"
|
Component "internal.auth.__DOMAIN__" "muc"
|
||||||
storage = "null"
|
|
||||||
modules_enabled = {
|
modules_enabled = {
|
||||||
"ping";
|
"ping";
|
||||||
}
|
}
|
||||||
admins = { "__FOCUS_USER__@auth.__DOMAIN__", "__VIDEOBRIDGE_USER__@auth.__DOMAIN__" }
|
admins = { "__FOCUS_USER__@auth.__DOMAIN__", "__VIDEOBRIDGE_USER__@auth.__DOMAIN__" }
|
||||||
muc_room_locking = false
|
instant_room_on_creation = true
|
||||||
muc_room_default_public_jids = true
|
room_default_whois = "anyone"
|
||||||
|
|
||||||
VirtualHost "auth.__DOMAIN__"
|
VirtualHost "auth.__DOMAIN__"
|
||||||
ssl = {
|
ssl = {
|
||||||
|
|
Loading…
Reference in a new issue