12345678910111213141516171819202122232425262728 |
- VirtualHost "jitmeet.example.com"
- -- enabled = false -- Remove this line to enable this host
- authentication = "anonymous"
- -- 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";
- }
-
- Component "conference.jitmeet.example.com" "muc"
- 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"
|