mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-16 07:16:38 +00:00
* feature: create account for a newly registered user * feature: finalize user auth flow * feature: create protected API with JWT * chore: cleanup http server * feature: add UI assets * chore: update react UI * refactor: move account not exists -> create to AccountManager * chore: update UI * chore: return only peers on peers endpoint * chore: add UI path to the config * chore: remove ui from management * chore: remove unused Docker comamnds * docs: update management config sample * fix: store creation * feature: introduce peer response to the HTTP api * fix: lint errors * feature: add setup-keys HTTP endpoint * fix: return empty json arrays in HTTP API * feature: add new peer response fields
33 lines
882 B
JSON
33 lines
882 B
JSON
{
|
|
"Stuns": [
|
|
{
|
|
"Proto": "udp",
|
|
"URI": "stun:stun.wiretrustee.com:3468",
|
|
"Username": "",
|
|
"Password": null
|
|
}
|
|
],
|
|
"Turns": [
|
|
{
|
|
"Proto": "udp",
|
|
"URI": "turn:stun.wiretrustee.com:3468",
|
|
"Username": "some_user",
|
|
"Password": "c29tZV9wYXNzd29yZA=="
|
|
}
|
|
],
|
|
"Signal": {
|
|
"Proto": "http",
|
|
"URI": "signal.wiretrustee.com:10000",
|
|
"Username": "",
|
|
"Password": null
|
|
},
|
|
"Datadir": "",
|
|
"HttpConfig": {
|
|
"LetsEncryptDomain": "",
|
|
"Address": "0.0.0.0:3000",
|
|
"AuthIssuer": "<PASTE YOUR AUTH0 ISSUER HERE>",
|
|
"AuthAudience": "<PASTE YOUR AUTH0 AUDIENCE HERE>",
|
|
"AuthKeysLocation": "<PASTE YOUR JWT KEY SET location>",
|
|
"UIFilesLocation": "/var/lib/wiretrustee/ui/"
|
|
}
|
|
} |