2024-04-27 12:32:20 +02:00
# Setting up TURN/STUN
2022-02-04 19:11:29 +01:00
## General instructions
2024-07-18 21:58:27 +02:00
* It is assumed you have a [Coturn server ](https://github.com/coturn/coturn ) up and running. See [Synapse reference implementation ](https://github.com/element-hq/synapse/blob/develop/docs/turn-howto.md ).
2022-02-04 19:11:29 +01:00
## Edit/Add a few settings to your existing conduit.toml
```
# Refer to your Coturn settings.
2022-02-04 21:11:50 +01:00
# `your.turn.url` has to match the REALM setting of your Coturn as well as `transport`.
turn_uris = ["turn:your.turn.url?transport=udp", "turn:your.turn.url?transport=tcp"]
2022-02-04 19:11:29 +01:00
# static-auth-secret of your turnserver
turn_secret = "ADD SECRET HERE"
# If you have your TURN server configured to use a username and password
# you can provide these information too. In this case comment out `turn_secret above`!
#turn_username = ""
#turn_password = ""
```
## Apply settings
2024-03-13 18:01:41 +01:00
Restart Conduit.