1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/conduit_ynh.git synced 2024-09-03 18:16:30 +02:00

Update README.md

improve coturn config
This commit is contained in:
Thatoo 2024-03-16 14:58:08 +01:00 committed by GitHub
parent f18d0c8f1a
commit e4281905fa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -28,10 +28,16 @@ Conduit keeps things simple, it's a single binary with an embedded database and
To be able to take advantage of audio and video call functionalities, a coturn server is often required. It is possible to [install a coturn server in Yunohost (https://github.com/YunoHost-Apps/coturn-ynh/blob/master/README-en.md).
It is then necessary to fill in the information provided by the coturn server in the file 'conduit.toml' such as:
```
turn_uris = ["turn:your.turn.url:5349?transport=udp", "turn:your.turn.url:5349?transport=tcp, turns:your.turn.url:5349?transport=udp", "turns:your.turn.url:5349?transport=tcp"]
turn_uris = ["turns:your.turn.url:5349?transport=udp", "turns:your.turn.url:5349?transport=tcp"]
turn_username = "<YOUR_USERNAME>"
turn_password = "<YOUR_PASSWORD>"
```
If your coturn (not Yunohost's one) don't use TLS, you might need to change alittle bit like :
```
turn_uris = ["turn:your.turn.url:5349?transport=udp", "turn:your.turn.url:5349?transport=tcp"]
```
## Documentation and resources
* Official app website: <https://conduit.rs/>