mirror of
https://github.com/schlagmichdoch/PairDrop.git
synced 2025-04-27 18:26:16 -04:00
fix TURN/STURN
* remove docker-compose-coturn.yml and replace it with and example-file, because there are user-data inside, which should not be on git * add a whole rtc_config_example-coturn.json to be copied to rtc_config.json and only the domain <DOMAIN> should be changed. * modified the documentation * modified the .gitignore to ignore the files with user-data
This commit is contained in:
parent
8f4ce63a0c
commit
61b52609bc
7 changed files with 76 additions and 21 deletions
21
rtc_config_example-coturn.json
Normal file
21
rtc_config_example-coturn.json
Normal file
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"sdpSemantics": "unified-plan",
|
||||
"iceServers": [
|
||||
{
|
||||
"urls": "stun:<DOMAIN>:3478"
|
||||
},
|
||||
{
|
||||
"urls": "stuns:<DOMAIN>:5349"
|
||||
},
|
||||
{
|
||||
"urls": "turn:<DOMAIN>:3478",
|
||||
"username": "user",
|
||||
"credential": "password"
|
||||
},
|
||||
{
|
||||
"urls": "turns:<DOMAIN>:5349",
|
||||
"username": "user",
|
||||
"credential": "password"
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue