This is Server Protocol AppRTC Component, you need to drop this component in the form and select a TsgcWebSocketServer Component using Server Property.
IceServers: here you can configure turn/stun servers for WebRTC connections.
RoomLink: URL base to access room. Example: https://mydemo.com/r/
WebSocketURL: URL to WebSocket server. Example: wss://mydemo.com
WebRTC Protocol requires STUN/TURN server, demos use public STUN/TURN servers for testing purposes. In order to put in a production system, a dedicated STUN/TURN server is required.
Registered users can download compiled binaries of Coturn server for Windows. Read more about COTURN STUN/TURN.
IceServers Configuration
If you are running your STUN/TURN server in the following IP Address: 51.122.4.88 and is listening port 3478. User to connect is "apprtc" and credential is "secret". Configure the IceServers as follows:
{
"lifetimeDuration": "86400s",
"iceServers": [{
"urls": "stun:51.122.4.88:3478",
"username": "apprtc",
"credential": "secret"
}, {
"urls": "turn:51.122.4.88:3478",
"username": "apprtc",
"credential": "secret"
}],
"blockStatus": "NOT_BLOCKED",
"iceTransportPolicy": "all"
}