pbex
pbex

Reputation: 43

Websockets on localhost over https:// problems

I'm trying to write a service, my service is a WebsocketServer is written in nodejs, with express and the ws module. This service should be installed with node-webkit locally on a computer(on localhost) to communicate with a web site in https:// to exchange information. My problem is, that i need a trusted certificate for localhost(its not possible), because all browsers give a warning if i use a self signed certificate. I know i can ignore that warning, but in the future this software should be distribuited, and i dont want to give that warning for future clients. Is there a good way to resolve this problem?

Upvotes: 2

Views: 587

Answers (1)

Paul Sweatte
Paul Sweatte

Reputation: 24617

Use one of the following options to work around this:

References

Upvotes: 2

Related Questions