Advertisement
Guest User

Untitled

a guest
May 17th, 2018
317
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.59 KB | None | 0 0
  1. daemonize = true
  2. log = {
  3. debug = "/home/robo/prosody.log";
  4. }
  5. pidfile = "/run/prosody/prodosy.pid"
  6. -- s2s_require_encryption = true
  7. modules_enabled = {
  8. "roster";
  9. "saslauth";
  10. "tls";
  11. "dialback";
  12. "disco";
  13. "private";
  14. "vcard";
  15. "version";
  16. "uptime";
  17. "time";
  18. "ping";
  19. "pep";
  20. "admin_adhoc";
  21. "posix";
  22. }
  23. allow_registration = false
  24. c2s_require_encryption = false
  25. s2s_secure_auth = false
  26. -- authentication = "internal_plain"
  27.  
  28. VirtualHost "meet.roboland-projekt.de"
  29. authentication = "anonymous"
  30. --certificates = "/var/lib/prosody"
  31. ssl = {
  32. key = "/var/lib/prosody/meet.roboland-projekt.de.key";
  33. certificate = "/var/lib/prosody/meet.roboland-projekt.de.crt";
  34. }
  35. c2s_require_encryption = false
  36. modules_enabled = {
  37. "bosh";
  38. "pubsub";
  39. "ping";
  40. }
  41. c2s_require_encryption = false
  42.  
  43. VirtualHost "auth.meet.roboland-projekt.de"
  44. --certificates = "/var/lib/prosody"
  45. ssl = {
  46. key = "/var/lib/prosody/auth.meet.roboland-projekt.de.key";
  47. certificate = "/var/lib/prosody/auth.meet.roboland-projekt.de.crt";
  48. }
  49. authentication = "internal_plain"
  50.  
  51. VirtualHost "localhost"
  52.  
  53. admins = { "focus@auth.meet.roboland-projekt.de" }
  54.  
  55. Component "conference.meet.roboland-projekt.de" "muc"
  56. storage = "null"
  57.  
  58. Component "jitsi-videobridge.meet.roboland-projekt.de"
  59. component_secret = "prosodysecret1"
  60.  
  61. Component "focus.meet.roboland-projekt.de"
  62. component_secret = "prosodysecret2"
  63.  
  64. -- consider_bosh_secure = true
  65. -- cross_domain_bosh = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement