| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- 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";
-
- 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"
- -- we need bosh
- modules_enabled = {
- "bosh";
- "pubsub";
- "ping"; -- Enable mod_ping
- "speakerstats";
- }
- c2s_require_encryption = false
-
- Component "conference.jitmeet.example.com" "muc"
- storage = "null"
- modules_enabled = {
- "muc_meeting_id";
- "muc_domain_mapper";
- -- "token_verification";
- }
- admins = { "focusUser@auth.jitmeet.example.com" }
-
- -- internal muc component
- Component "internal.auth.jitmeet.example.com" "muc"
- storage = "null"
- modules_enabled = {
- "ping";
- }
- admins = { "focusUser@auth.jitmeet.example.com", "jvb@auth.jitmeet.example.com" }
-
- 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"
|