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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. turncredentials_secret = "__turnSecret__";
  5. turncredentials = {
  6. { type = "stun", host = "jitmeet.example.com", port = "443" },
  7. { type = "turn", host = "jitmeet.example.com", port = "443", transport = "udp" },
  8. { type = "turns", host = "jitmeet.example.com", port = "443", transport = "tcp" }
  9. };
  10. cross_domain_bosh = false;
  11. consider_bosh_secure = true;
  12. VirtualHost "jitmeet.example.com"
  13. -- enabled = false -- Remove this line to enable this host
  14. authentication = "anonymous"
  15. -- Properties below are modified by jitsi-meet-tokens package config
  16. -- and authentication above is switched to "token"
  17. --app_id="example_app_id"
  18. --app_secret="example_app_secret"
  19. -- Assign this host a certificate for TLS, otherwise it would use the one
  20. -- set in the global section (if any).
  21. -- Note that old-style SSL on port 5223 only supports one certificate, and will always
  22. -- use the global one.
  23. ssl = {
  24. key = "/etc/prosody/certs/jitmeet.example.com.key";
  25. certificate = "/etc/prosody/certs/jitmeet.example.com.crt";
  26. }
  27. speakerstats_component = "speakerstats.jitmeet.example.com"
  28. conference_duration_component = "conferenceduration.jitmeet.example.com"
  29. -- we need bosh
  30. modules_enabled = {
  31. "bosh";
  32. "pubsub";
  33. "ping"; -- Enable mod_ping
  34. "speakerstats";
  35. "turncredentials";
  36. "conference_duration";
  37. }
  38. c2s_require_encryption = false
  39. Component "conference.jitmeet.example.com" "muc"
  40. storage = "null"
  41. modules_enabled = {
  42. "muc_meeting_id";
  43. "muc_domain_mapper";
  44. -- "token_verification";
  45. }
  46. admins = { "focusUser@auth.jitmeet.example.com" }
  47. -- internal muc component
  48. Component "internal.auth.jitmeet.example.com" "muc"
  49. storage = "null"
  50. modules_enabled = {
  51. "ping";
  52. }
  53. admins = { "focusUser@auth.jitmeet.example.com", "jvb@auth.jitmeet.example.com" }
  54. VirtualHost "auth.jitmeet.example.com"
  55. authentication = "internal_plain"
  56. Component "focus.jitmeet.example.com"
  57. component_secret = "focusSecret"
  58. Component "speakerstats.jitmeet.example.com" "speakerstats_component"
  59. muc_component = "conference.jitmeet.example.com"
  60. Component "conferenceduration.jitmeet.example.com" "conference_duration_component"
  61. muc_component = "conference.jitmeet.example.com"