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

12345678910111213141516171819202122232425262728293031323334353637
  1. -- Plugins path gets uncommented during jitsi-meet-tokens package install - that's where token plugin is located
  2. --plugin_paths = { "/usr/share/jitsi-meet/prosody-plugins/" }
  3. VirtualHost "jitmeet.example.com"
  4. -- enabled = false -- Remove this line to enable this host
  5. authentication = "anonymous"
  6. -- Two properties below get uncommented by jitsi-meet-tokens package config
  7. -- and authentication above is switched to "token"
  8. --app_id=example_app_id
  9. --app_secret=example_app_secret
  10. -- Assign this host a certificate for TLS, otherwise it would use the one
  11. -- set in the global section (if any).
  12. -- Note that old-style SSL on port 5223 only supports one certificate, and will always
  13. -- use the global one.
  14. ssl = {
  15. key = "/etc/prosody/certs/jitmeet.example.com.key";
  16. certificate = "/etc/prosody/certs/jitmeet.example.com.crt";
  17. }
  18. -- we need bosh
  19. modules_enabled = {
  20. "bosh";
  21. "pubsub";
  22. "ping"; -- Enable mod_ping
  23. }
  24. Component "conference.jitmeet.example.com" "muc"
  25. --modules_enabled = { "token_verification" }
  26. admins = { "focusUser@auth.jitmeet.example.com" }
  27. Component "jitsi-videobridge.jitmeet.example.com"
  28. component_secret = "jitmeetSecret"
  29. VirtualHost "auth.jitmeet.example.com"
  30. authentication = "internal_plain"
  31. Component "focus.jitmeet.example.com"
  32. component_secret = "focusSecret"