alexyoung / ircd.js

A Node ircd (IRC daemon)
GNU General Public License v3.0
528 stars 90 forks source link

support tls #24

Closed guybrush closed 12 years ago

guybrush commented 12 years ago

if config.key and config.cert is provided it will start a tls-server

config.{key,cert} have to be paths to the key-files

note: the doc would have to be updated too

guybrush commented 12 years ago

actually it would be nice to have ircd running with both options - tls and tcp at the same time on 2 ports. so the user can choose if he wants to use ssl but has not to.

would be trivial to implement with nodejs :D

maybe like that:

{ ..
, tcp : {port:3001, host:''}
, tls : {port:3002, host:'', key:'', cert:''}
, ..
}

of course best would be to have multiple server running with various options, connected to the same network

alexyoung commented 12 years ago

Thanks