-
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: improve NAT traversal; add TURN routing (#795)
Signed-off-by: ivelin <[email protected]>
- Loading branch information
Ivelin Ivanov
authored
Dec 13, 2021
1 parent
966c756
commit f88a01d
Showing
5 changed files
with
13 additions
and
5 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,5 +10,11 @@ export const ambianicConf = { | |
AMBIANIC_EDGE_API_ROOT: 'api', | ||
AMBIANIC_PNP_HOST: 'ambianic-pnp.herokuapp.com', // 'localhost' | ||
AMBIANIC_PNP_PORT: 443, // 9779 | ||
AMBIANIC_PNP_SECURE: true // false | ||
AMBIANIC_PNP_SECURE: true, // false | ||
ICE_CONFIG: { | ||
'iceServers': [ | ||
{ url: 'stun:stun.l.google.com:19302' }, | ||
{ url: 'turn:numb.viagenie.ca', credential: 'DAEidbG!xHavEX7', username: '[email protected]' } | ||
] | ||
} /* Default STUN and TURN servers */ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters