You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Need to generate ssl certificate with private key. Certificate must be signed by certificate agency.
Next need to run websocketd server with following parameters:
--ssl
--sslcert=cert_file_name
--sslkey=cert_priv_key_file
--sslca=cert_ca_file_name
There is no clear solution for all platforms at this moment. Because of localhost we cannot use standard public CA for sign our ssl certificate. We need to use self signed certificate and import our certificate into system certificate storage. However, on Linux and Windows browser do not use system certificate storage for verifying ssl connection. Browser on Linux and Windows use self storage for storing CA certificates instead.
Summary:
On MacOS we can import our certificate into keychain (macos system storage) during installation.
On Linux and Windows we need
either use unsecured websocket connection and Well-known ports (< 1024)
or find all supported browsers in the OS and import our certificate into browser storage. Need to figure how to import our certificate to the browser storage and how difficult is it?
Need to use ssl connection with ws server.
The text was updated successfully, but these errors were encountered: