Skip to content
This repository was archived by the owner on Dec 22, 2023. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "RTCMultiConnection-Server"]
path = RTCMultiConnection-Server
url = https://github.com/quiph/RTCMultiConnection-Server.git
1 change: 1 addition & 0 deletions RTCMultiConnection-Server
4 changes: 2 additions & 2 deletions config.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
"sslCert": "./fake-keys/certificate.pem",
"sslCabundle": "",
"enableAdmin": "true",
"adminUserName": "username",
"adminPassword": "password"
"adminUserName": "quiph-admin",
"adminPassword": "Quiph@2208"
}
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@
"getstats": "latest",
"multistreamsmixer": "latest",
"recordrtc": "latest",
"rtcmulticonnection-server": "latest",
"socket.io": "latest",
"webrtc-adapter": "latest"
},
Expand Down
2 changes: 1 addition & 1 deletion server.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const url = require('url');
var httpServer = require('http');

const ioServer = require('socket.io');
const RTCMultiConnectionServer = require('rtcmulticonnection-server');
const RTCMultiConnectionServer = require('./RTCMultiConnection-Server');

var PORT = 9001;
var isUseHTTPs = false;
Expand Down