Advertisement
Guest User

finfig

a guest
Apr 23rd, 2017
588
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  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.  
  4. VirtualHost "x.x.x.x"
  5. -- enabled = false -- Remove this line to enable this host
  6. authentication = "internal_plain"
  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/x.x.x.x.key";
  17. certificate = "/etc/prosody/certs/x.x.x.x.crt";
  18. }
  19. -- we need bosh
  20. modules_enabled = {
  21. "bosh";
  22. "pubsub";
  23. "ping"; -- Enable mod_ping
  24. }
  25.  
  26. Component "conference.x.x.x.x" "muc"
  27. --modules_enabled = { "token_verification" }
  28. admins = { "focus@auth.x.x.x.x" }
  29.  
  30. Component "jitsi-videobridge.x.x.x.x"
  31. component_secret = "w7L#RPzz"
  32.  
  33. VirtualHost "auth.x.x.x.x"
  34. authentication = "internal_plain"
  35.  
  36. Component "focus.x.x.x.x"
  37. component_secret = "ybUGUCfN"
  38.  
  39. VirtualHost guest.x.x.x.x
  40. authentication = "anonymous"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement