Advertisement
EasyTec

Talk auf Nextcloud Installieren

Dec 19th, 2020 (edited)
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. ### (Nextcloud) Talk auf Nextcloud Installieren ###
  2.  
  3. ## Update Durchführen ##
  4. apt-get update
  5. apt-get upgrade
  6.  
  7. ## Coturn Installieren ##
  8. apt install coturn
  9.  
  10. ## autostart von Coturn einrichten ##
  11. sudo sed -i '/TURNSERVER_ENABLED/c\TURNSERVER_ENABLED=1' /etc/default/coturn
  12.  
  13. ## konfiguration bearbeiten ##
  14. nano /etc/turnserver.conf
  15.  
  16. listening-port=3478
  17. fingerprint
  18. lt-cred-mech # Only on coTURN below v4.5.0.8!
  19. use-auth-secret
  20. static-auth-secret=<sicheresPW>
  21. realm=your.domain.org
  22. total-quota=100
  23. bps-capacity=0
  24. stale-nonce
  25. no-loopback-peers # Only on coTURN below v4.5.1.0!
  26. no-multicast-peers
  27.  
  28. ## Coturn restarten ##
  29. systemctl restart coturn
  30.  
  31. ## Portfreigabe in Fritz!Box für 3479 ##
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement