I also tried KiwiIRC following the instructions at https://www.unrealircd.org/docs/WebSocket_support. I know my IRC server is running because I can connect using other types of clients. I have verified the websocket port I am using is open. I added these lines to my unrealircd.conf:
Code: Select all
loadmodule "websocket";
loadmodule "webserver";
listen {
ip *;
port 8000;
options {
tls;
websocket { type text; } // type must be either 'text' or 'binary'
};
tls-options {
certificate "/home/irc/unrealircd/conf/tls/server.cert.pem";
key "/home/irc/unrealircd/conf/tls/server.key.pem";
options {
no-client-certificate;
};
};
};