2

I've configured Web RTC sever in my PC. It's working with http://localhost:8080 But this server is not working with the IP address in another machines.

I've referred Web RTC Server with this URL.

Mr. N.V.Rao
  • 1,082
  • 13
  • 27

2 Answers2

1

It might be a certificate problem. For Chrome you need to host your website on secure http (https) and your webrtc websocket needs to be also secured (wss). Localhost is an exception for this. You might try to test with Firefox as that doesn't require wss.

Istvan
  • 1,591
  • 1
  • 13
  • 19
  • I've tested in Firefox Browser. But not loading. Even in my PC also when I test with the IP address, it's not loading, but when I tested with the localhost it's loading. – Mr. N.V.Rao May 24 '16 at 11:20
  • We need to Setup any TURN/ICE server and a signaling server for our Own server @Istvan – Mr. N.V.Rao May 24 '16 at 11:41
  • If you are testing on localhost, the STUN and TURN can't be a problem. You can just disable these by passing an empty array for ICE. – Istvan May 25 '16 at 14:25
0

try start with mentioning --host=your local ip address

user2988855
  • 296
  • 1
  • 3
  • 10