mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-07 16:54:16 +01:00
605ca03519
* Fix IDP Manager config structs with correct tags When loading the configuration from file we will use the Auth0ClientConfig and when sending the post to retrieve a token we use the auth0JWTRequest with proper tags Also, removed the idle timeout as it was closing all idle connections
47 lines
1.5 KiB
JSON
47 lines
1.5 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": "some_password"
|
|
}
|
|
],
|
|
"CredentialsTTL": "1h",
|
|
"Secret": "c29tZV9wYXNzd29yZA==",
|
|
"TimeBasedCredentials": true
|
|
},
|
|
"Signal": {
|
|
"Proto": "http",
|
|
"URI": "signal.wiretrustee.com:10000",
|
|
"Username": "",
|
|
"Password": null
|
|
},
|
|
"DataDir": "",
|
|
"HttpConfig": {
|
|
"LetsEncryptDomain": "<PASTE YOUR LET'S ENCRYPT DOMAIN HERE>",
|
|
"Address": "0.0.0.0:3000",
|
|
"AuthIssuer": "<PASTE YOUR AUTH0 ISSUER HERE>,",
|
|
"AuthAudience": "<PASTE YOUR AUTH0 AUDIENCE HERE>",
|
|
"AuthKeysLocation": "<PASTE YOUR AUTH0 PUBLIC JWT KEYS LOCATION HERE>"
|
|
},
|
|
"IdpManagerConfig": {
|
|
"ManagerType": "<none|auth0>",
|
|
"Auth0ClientCredentials": {
|
|
"Audience": "<PASTE YOUR AUTH0 AUDIENCE HERE>",
|
|
"AuthIssuer": "https://<PASTE YOUR AUTH0 Auth Issuer HERE>",
|
|
"ClientID": "<PASTE YOUR AUTH0 Application Client ID HERE>",
|
|
"ClientSecret": "<PASTE YOUR AUTH0 Application Client Secret HERE>",
|
|
"GrantType": "client_credentials"
|
|
}
|
|
}
|
|
} |