change domains, ports and ip-addresses
This commit is contained in:
parent
5fcbcaa8c8
commit
5c77cdd34c
2 changed files with 7 additions and 6 deletions
|
@ -2,10 +2,10 @@
|
|||
"sdpSemantics": "unified-plan",
|
||||
"iceServers": [
|
||||
{
|
||||
"urls": "stuns:<TURN-DOMAIN>:443"
|
||||
"urls": "stuns:<DOMAIN>:5349"
|
||||
},
|
||||
{
|
||||
"urls": "turns:<TURN-DOMAIN>:443",
|
||||
"urls": "turns:<DOMAIN>:5349",
|
||||
"username": "user",
|
||||
"credential": "password"
|
||||
}
|
||||
|
|
|
@ -7,17 +7,18 @@ server-name=pairdrop
|
|||
listening-ip=0.0.0.0
|
||||
|
||||
# External IP-Address of the TURN server
|
||||
external-ip=<IP_ADDRESS>
|
||||
# only needed, if coturn is behind a NAT
|
||||
#external-ip=<IP_ADDRESS>
|
||||
|
||||
# relay-ip is needed for tls turns connections
|
||||
relay-ip=<IP_ADDRESS>
|
||||
# it can be set multiple times. A local IP is sufficient (not 127.0.0.1!!)
|
||||
relay-ip=<SOME_LOCAL_IP_ADDRESS>
|
||||
|
||||
# Main listening port
|
||||
listening-port=3478
|
||||
|
||||
# 443 for TURN over TLS, which can bypass firewalls
|
||||
# the standard-port is 5349
|
||||
tls-listening-port=443
|
||||
tls-listening-port=5349
|
||||
|
||||
# Further ports that are open for communication
|
||||
min-port=10000
|
||||
|
|
Loading…
Reference in a new issue