Skip to content

Commit a12646e

Browse files
committed
Updated the name of the RTC_SERVER to TURN_SERVER to be more explicity and not as dependent upon the RTC module (no longer a dependency)
1 parent cd0b157 commit a12646e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
RTC_SERVER=https://52.53.188.29:8080/
1+
TURN_SERVER=https://52.53.188.29:8080/
22
AWS_ACCESS_KEY_ID=YOUR_ACCESS_KEY
33
AWS_SECRET_ACCESS_KEY=YOUR_SECRET_KEY
44
AWS_VPC_ID=YOUR_VPC_ID

src/redux/modules/webrtc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ let rtc = null;
4242
export const actions = {
4343
init: (cfg) => (dispatch, getState) => {
4444
rtc = new SimpleWebRTC({
45-
url: __RTC_SERVER__,
45+
url: __TURN_SERVER__,
4646
debug: cfg.debug || false,
4747
peerConnectionConfig: freeice()
4848
});

0 commit comments

Comments
 (0)