mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-26 10:03:47 +01:00
a4db0b4e94
* feature: update STUNs and TURNs in engine * fix: setup TURN credentials request only when refresh enabled * feature: update TURNs and STUNs in teh client app on Management update * chore: disable peer reflexive candidates in ICE * chore: relocate management.json * chore: make TURN secret and pwd plain text in config
39 lines
1.0 KiB
JSON
39 lines
1.0 KiB
JSON
{
|
|
"Stuns": [
|
|
{
|
|
"Proto": "udp",
|
|
"URI": "stun:stun.wiretrustee.com:3468",
|
|
"Username": "",
|
|
"Password": null
|
|
}
|
|
],
|
|
"TURNConfig": {
|
|
"Turns": [
|
|
{
|
|
"Proto": "udp",
|
|
"URI": "turn:stun.wiretrustee.com:3468",
|
|
"Username": "some_user",
|
|
"Password": "c29tZV9wYXNzd29yZA=="
|
|
}
|
|
],
|
|
"CredentialsTTL": "1h",
|
|
"Secret": "c29tZV9wYXNzd29yZA==",
|
|
"TimeBasedCredentials": true
|
|
},
|
|
"Signal": {
|
|
"Proto": "http",
|
|
"URI": "signal.wiretrustee.com:10000",
|
|
"Username": "",
|
|
"Password": null
|
|
},
|
|
"Datadir": "",
|
|
"HttpConfig": {
|
|
"LetsEncryptDomain": "",
|
|
"Address": "0.0.0.0:3000",
|
|
"AuthDomain": "<PASTE YOUR AUTH0 DOMAIN HERE>",
|
|
"AuthClientId": "<PASTE YOUR AUTH0 CLIENT ID HERE>",
|
|
"AuthClientSecret": "<PASTE YOUR AUTH0 SECRET>",
|
|
"AuthCallback": "http://localhost:3000/callback"
|
|
}
|
|
}
|