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.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. speakerstats_component = "speakerstats.jitmeet.example.com"
  20. -- we need bosh
  21. modules_enabled = {
  22. "bosh";
  23. "pubsub";
  24. "ping"; -- Enable mod_ping
  25. "speakerstats";
  26. }
  27. c2s_require_encryption = false
  28. Component "conference.jitmeet.example.com" "muc"
  29. storage = "null"
  30. modules_enabled = {
  31. "muc_meeting_id";
  32. "muc_domain_mapper";
  33. -- "token_verification";
  34. }
  35. admins = { "focusUser@auth.jitmeet.example.com" }
  36. -- internal muc component
  37. Component "internal.auth.jitmeet.example.com" "muc"
  38. storage = "null"
  39. modules_enabled = {
  40. "ping";
  41. }
  42. admins = { "focusUser@auth.jitmeet.example.com", "jvb@auth.jitmeet.example.com" }
  43. VirtualHost "auth.jitmeet.example.com"
  44. authentication = "internal_plain"
  45. Component "focus.jitmeet.example.com"
  46. component_secret = "focusSecret"
  47. Component "speakerstats.jitmeet.example.com" "speakerstats_component"
  48. muc_component = "conference.jitmeet.example.com"