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 1.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. plugin_paths = { "/usr/share/jitsi-meet/prosody-plugins/" }
  2. -- domain mapper options, must at least have domain base set to use the mapper
  3. muc_mapper_domain_base = "jitmeet.example.com";
  4. VirtualHost "jitmeet.example.com"
  5. -- enabled = false -- Remove this line to enable this host
  6. authentication = "anonymous"
  7. -- Properties below are modified by jitsi-meet-tokens package config
  8. -- and authentication above is switched to "token"
  9. --app_id="example_app_id"
  10. --app_secret="example_app_secret"
  11. -- Assign this host a certificate for TLS, otherwise it would use the one
  12. -- set in the global section (if any).
  13. -- Note that old-style SSL on port 5223 only supports one certificate, and will always
  14. -- use the global one.
  15. ssl = {
  16. key = "/etc/prosody/certs/jitmeet.example.com.key";
  17. certificate = "/etc/prosody/certs/jitmeet.example.com.crt";
  18. }
  19. -- we need bosh
  20. modules_enabled = {
  21. "bosh";
  22. "pubsub";
  23. "ping"; -- Enable mod_ping
  24. }
  25. c2s_require_encryption = false
  26. Component "conference.jitmeet.example.com" "muc"
  27. storage = "null"
  28. modules_enabled = {
  29. "muc_meeting_id";
  30. "muc_domain_mapper";
  31. -- "token_verification";
  32. }
  33. admins = { "focusUser@auth.jitmeet.example.com" }
  34. Component "jitsi-videobridge.jitmeet.example.com"
  35. component_secret = "jitmeetSecret"
  36. VirtualHost "auth.jitmeet.example.com"
  37. authentication = "internal_plain"
  38. Component "focus.jitmeet.example.com"
  39. component_secret = "focusSecret"