node-irc icon indicating copy to clipboard operation
node-irc copied to clipboard

SSL not work ?

Open Bqdzy opened this issue 4 years ago • 2 comments

Hello,

I am trying to connect the bot in SSL. For that I generated a certificate: openssl req -newkey rsa:2048 -new -nodes -keyout key.pem -out csr.pem openssl x509 -req -days 365 -in csr.pem -signkey key.pem -out server.crt

and I configured the secure with this: var options = { key: fs.readFileSync('key.pem'), cert: fs.readFileSync('server.crt'), };

But the bot doesn't seem to want to connect.

Bqdzy avatar Aug 23 '21 21:08 Bqdzy