Skip to content
This repository has been archived by the owner on Dec 18, 2023. It is now read-only.

Latest commit

 

History

History
39 lines (32 loc) · 600 Bytes

__INSTALL_COTURN_HELP.md

File metadata and controls

39 lines (32 loc) · 600 Bytes

REAL DOC => https://github.com/coturn/coturn

BASIC INSTALL COTURN

Install coturn

sudo apt-get install coturn

edit /etc/turnserver.conf

  vi /etc/turnserver.conf

Add static user

user=myusername:mypassword

run turnserver

  turnserver -L yourip -o -a -f -r yourservername
  Exemple: turnserver -L 51.10.10.124 -o -a -f -r mycitygta.com

Edit config.json

{
  "useWebRTCVocal": true,
  "RTCConfig": {
    "iceServers": [{
      "urls": ["turn:mycitygta.com"],
      "username": "myusername",
      "credential": "mypassword"
    }]
  },
}