mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-22 08:03:30 +01:00
071b03e790
* Updated self-hosted scripts and documentation Added more variables to setup.env and Updated the documentation. We are now configuring turn server with template as well. * Updated self-hosted scripts and documentation Added more variables to setup.env and Updated the documentation. We are now configuring turn server with template as well. * Updated self-hosted scripts and documentation Added more variables to setup.env and Updated the documentation. We are now configuring turn server with template as well. * Updated self-hosted scripts and documentation Added more variables to setup.env and Updated the documentation. We are now configuring turn server with template as well.
41 lines
1.1 KiB
Cheetah
41 lines
1.1 KiB
Cheetah
{
|
|
"Stuns": [
|
|
{
|
|
"Proto": "udp",
|
|
"URI": "stun:$WIRETRUSTEE_DOMAIN:3478",
|
|
"Username": "",
|
|
"Password": null
|
|
}
|
|
],
|
|
"TURNConfig": {
|
|
"Turns": [
|
|
{
|
|
"Proto": "udp",
|
|
"URI": "turn:$WIRETRUSTEE_DOMAIN:3478",
|
|
"Username": "$TURN_USER",
|
|
"Password": "$TURN_PASSWORD"
|
|
}
|
|
],
|
|
"CredentialsTTL": "12h",
|
|
"Secret": "secret",
|
|
"TimeBasedCredentials": false
|
|
},
|
|
"Signal": {
|
|
"Proto": "http",
|
|
"URI": "$WIRETRUSTEE_DOMAIN:10000",
|
|
"Username": "",
|
|
"Password": null
|
|
},
|
|
"Datadir": "",
|
|
"HttpConfig": {
|
|
"Address": "0.0.0.0:$WIRETRUSTEE_MGMT_API_PORT",
|
|
"AuthIssuer": "https://$WIRETRUSTEE_AUTH0_DOMAIN/",
|
|
"AuthAudience": "$WIRETRUSTEE_AUTH0_AUDIENCE",
|
|
"AuthKeysLocation": "https://$WIRETRUSTEE_AUTH0_DOMAIN/.well-known/jwks.json",
|
|
"CertFile":"$WIRETRUSTEE_MGMT_API_CERT_FILE",
|
|
"CertKey":"$WIRETRUSTEE_MGMT_API_CERT_KEY_FILE"
|
|
},
|
|
"IdpManagerConfig": {
|
|
"Manager": "none"
|
|
}
|
|
} |