modified lib-jitsi-meet dev repo
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

prosody.cfg.lua-jvb.example 1015B

12345678910111213141516171819202122232425262728
  1. VirtualHost "jitmeet.example.com"
  2. -- enabled = false -- Remove this line to enable this host
  3. authentication = "anonymous"
  4. -- Assign this host a certificate for TLS, otherwise it would use the one
  5. -- set in the global section (if any).
  6. -- Note that old-style SSL on port 5223 only supports one certificate, and will always
  7. -- use the global one.
  8. ssl = {
  9. key = "/etc/prosody/certs/jitmeet.example.com.key";
  10. certificate = "/etc/prosody/certs/jitmeet.example.com.crt";
  11. }
  12. -- we need bosh
  13. modules_enabled = {
  14. "bosh";
  15. "pubsub";
  16. }
  17. Component "conference.jitmeet.example.com" "muc"
  18. admins = { "focusUser@auth.jitmeet.example.com" }
  19. Component "jitsi-videobridge.jitmeet.example.com"
  20. component_secret = "jitmeetSecret"
  21. VirtualHost "auth.jitmeet.example.com"
  22. authentication = "internal_plain"
  23. Component "focus.jitmeet.example.com"
  24. component_secret = "focusSecret"