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.

meet.example.com.cfg.lua.scalable.example 2.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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 = "meet.example.com";
  4. turncredentials_secret = "turncredentials_secret_test";
  5. turncredentials = {
  6. { type = "stun", host = "meet.example.com", port = "443" },
  7. { type = "turn", host = "meet.example.com", port = "443", transport = "udp" },
  8. { type = "turns", host = "meet.example.com", port = "443", transport = "tcp" }
  9. };
  10. cross_domain_bosh = false;
  11. consider_bosh_secure = true;
  12. VirtualHost "meet.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/meet.example.com.key";
  25. certificate = "/etc/prosody/certs/meet.example.com.crt";
  26. }
  27. speakerstats_component = "speakerstats.meet.example.com"
  28. conference_duration_component = "conferenceduration.meet.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.meet.example.com" "muc"
  40. storage = "memory"
  41. modules_enabled = {
  42. "muc_meeting_id";
  43. "muc_domain_mapper";
  44. --"token_verification";
  45. }
  46. admins = { "focus@auth.meet.example.com" }
  47. muc_room_locking = false
  48. muc_room_default_public_jids = true
  49. -- internal muc component
  50. -- Note: This is also used from jibris
  51. Component "internal.auth.meet.example.com" "muc"
  52. storage = "memory"
  53. modules_enabled = {
  54. "ping";
  55. }
  56. admins = { "focus@auth.meet.example.com", "jvb@auth.meet.example.com" }
  57. VirtualHost "auth.meet.example.com"
  58. ssl = {
  59. key = "/etc/prosody/certs/auth.meet.example.com.key";
  60. certificate = "/etc/prosody/certs/auth.meet.example.com.crt";
  61. }
  62. authentication = "internal_hashed"
  63. Component "focus.meet.example.com"
  64. component_secret = "jicofo_secret_test"
  65. Component "speakerstats.meet.example.com" "speakerstats_component"
  66. muc_component = "conference.meet.example.com"
  67. Component "conferenceduration.meet.example.com" "conference_duration_component"
  68. muc_component = "conference.meet.example.com"
  69. -- for Jibri
  70. VirtualHost "recorder.meet.example.com"
  71. modules_enabled = {
  72. "ping";
  73. }
  74. authentication = "internal_hashed"
  75. c2s_require_encryption = false