12345678910111213141516171819202122232425262728293031323334353637 |
- -- Plugins path gets uncommented during jitsi-meet-tokens package install - that's where token plugin is located
- --plugin_paths = { "/usr/share/jitsi-meet/prosody-plugins/" }
-
- VirtualHost "jitmeet.example.com"
- -- enabled = false -- Remove this line to enable this host
- authentication = "anonymous"
- -- Two properties below get uncommented 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";
- }
- -- we need bosh
- modules_enabled = {
- "bosh";
- "pubsub";
- "ping"; -- Enable mod_ping
- }
-
- Component "conference.jitmeet.example.com" "muc"
- --modules_enabled = { "token_verification" }
- admins = { "focusUser@auth.jitmeet.example.com" }
-
- Component "jitsi-videobridge.jitmeet.example.com"
- component_secret = "jitmeetSecret"
-
- VirtualHost "auth.jitmeet.example.com"
- authentication = "internal_plain"
-
- Component "focus.jitmeet.example.com"
- component_secret = "focusSecret"
|