Can't connect to webrtc-star with ssl

Here is my addition to @jacobheun’s answer. Due to browser’s security policies you couldn’t establish unencrypted connection from secure context (e.g. page loaded via HTTPS). You can read about it at MDN Secure Context. So you should make your AWS server to use SSL and then replace ws:// with wss://.

1 Like