I have tried the example client at: https://www.unrealircd.org/files/dev/ws ... lircd.html
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:The output from the server at startup and the output from netstat both show my server listening for connection on port 8000. The certificate is valid and I can connect to the IRC server using TLS, just not with any websocket client. Any ideas what could be wrong?
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:
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; }; };};
Statistics: Posted by barryn — Tue Oct 15, 2024 4:34 am — Replies 13 — Views 363