Advertisement
Guest User

Untitled

a guest
Mar 7th, 2018
394
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. pidfile = "/var/run/prosody/prosody.pid"
  2. VirtualHost "jitsi.domain"
  3. authentication = "anonymous"
  4. ssl = {
  5. key = "/home/zl/sslcerts/jitsi/privkey2.pem";
  6. certificate = "/home/zl/sslcerts/jitsi/fullchain2.pem";
  7. }
  8. modules_enabled = {
  9. "bosh";
  10. "pubsub";
  11. }
  12. c2s_require_encryption = false
  13.  
  14. VirtualHost "auth.jitsi.domain"
  15. ssl = {
  16. key = "/home/zl/sslcerts/auth.jitsi/privkey1.pem";
  17. certificate = "/home/zl/sslcerts/auth.jitsi/fullchain1.pem";
  18. }
  19. authentication = "internal_plain"
  20.  
  21. admins = { "focus@auth.jitsi.domain" }
  22.  
  23. Component "conference.jitsi.domain" "muc"
  24. Component "jitsi-videobridge.jitsi.domain"
  25. component_secret = "YOURSECRET1"
  26. Component "focus.jitsi.familian.life"
  27. component_secret = "YOURSECRET2"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement