WSS Connection Error!

Addy

New Member
Hi Guys,
I am not able to connect with Amazon Web socket Server of web calling server and getting an error below
Error: WebSocket connection to 'wss://XYZ:8443/' failed: Error in connection establishment: net::ERR_CERT_AUTHORITY_INVALID
As per my understanding it is related to SSL issue. Currently i am doing the testing from my local machine so need to understand how can i generate the SSL certificate and upload it in to flashphoner certificates.
Please guide me step by step to do this process.
Thanks in advance!
 
Last edited:

Max

Administrator
Staff member
Good day.
You have to import valid SSL certificates over Dashboard/Security/Certificates (if you have certificates) or you can pass through the procedure of certificate import.
Please, view the step-by-step solution in the documentation.

Or you can use plain HTTP:
Code:
http://WCS_address:8081/admin/
and ws instead wss:
Code:
ws://WCS_address:8080
 
Last edited:

Max

Administrator
Staff member
Good day.
You should either receive and import valid SSL certificates (see step-by-step Let's Encrypt example here) or use HTTP as mentioned in this post. Note that you can publish WebRTC stream via Secure Websocket only.
 
Top