martynsmith / node-irc

NodeJS IRC client library
GNU General Public License v3.0
1.33k stars 424 forks source link

SSL not work ? #568

Open Bqdzy opened 2 years ago

Bqdzy commented 2 years ago

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.