12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- plugin_paths = { "/usr/share/jitsi-meet/prosody-plugins/" }
-
- -- domain mapper options, must at least have domain base set to use the mapper
- muc_mapper_domain_base = "jitmeet.example.com";
-
- turncredentials_secret = "__turnSecret__";
-
- turncredentials = {
- { type = "stun", host = "jitmeet.example.com", port = "4446" },
- { type = "turn", host = "jitmeet.example.com", port = "4446", transport = "udp" },
- { type = "turns", host = "jitmeet.example.com", port = "443", transport = "tcp" }
- };
-
- cross_domain_bosh = false;
- consider_bosh_secure = true;
-
- VirtualHost "jitmeet.example.com"
- -- enabled = false -- Remove this line to enable this host
- authentication = "anonymous"
- -- Properties below are modified by jitsi-meet-tokens package config
- -- and authentication above is switched to "token"
- --app_id="example_app_id"
- --app_secret="example_app_secret"
- -- Assign this host a certificate for TLS, otherwise it would use the one
- -- set in the global section (if any).
- -- Note that old-style SSL on port 5223 only supports one certificate, and will always
- -- use the global one.
- ssl = {
- key = "/etc/prosody/certs/jitmeet.example.com.key";
- certificate = "/etc/prosody/certs/jitmeet.example.com.crt";
- }
- speakerstats_component = "speakerstats.jitmeet.example.com"
- conference_duration_component = "conferenceduration.jitmeet.example.com"
- -- we need bosh
- modules_enabled = {
- "bosh";
- "pubsub";
- "ping"; -- Enable mod_ping
- "speakerstats";
- "turncredentials";
- "conference_duration";
- }
- c2s_require_encryption = false
-
- Component "conference.jitmeet.example.com" "muc"
- storage = "memory"
- modules_enabled = {
- "muc_meeting_id";
- "muc_domain_mapper";
- -- "token_verification";
- }
- admins = { "focusUser@auth.jitmeet.example.com" }
- muc_room_locking = false
- muc_room_default_public_jids = true
-
- -- internal muc component
- Component "internal.auth.jitmeet.example.com" "muc"
- storage = "memory"
- modules_enabled = {
- "ping";
- }
- admins = { "focusUser@auth.jitmeet.example.com", "jvb@auth.jitmeet.example.com" }
- muc_room_locking = false
- muc_room_default_public_jids = true
-
- VirtualHost "auth.jitmeet.example.com"
- authentication = "internal_plain"
-
- Component "focus.jitmeet.example.com"
- component_secret = "focusSecret"
-
- Component "speakerstats.jitmeet.example.com" "speakerstats_component"
- muc_component = "conference.jitmeet.example.com"
-
- Component "conferenceduration.jitmeet.example.com" "conference_duration_component"
- muc_component = "conference.jitmeet.example.com"
|