Search found 10 matches

by barryn
Fri Oct 18, 2024 7:41 am
Forum: Generic support
Topic: [SOLVED] Trying to get any websocket IRC client to work with UnrealIRCd
Replies: 13
Views: 24584

Re: Trying to get any websocket IRC client to work with UnrealIRCd

Thanks! I guess we can close this and leave it as a closed issue that others can find. I also created this custom fork of Kiwi IRC with minor changes to the default config.json and updates to the README.md.

Updated Kiwi IRC with notes about using it with Unreal IRC
by barryn
Wed Oct 16, 2024 10:03 pm
Forum: Generic support
Topic: [SOLVED] Trying to get any websocket IRC client to work with UnrealIRCd
Replies: 13
Views: 24584

Re: Trying to get any websocket IRC client to work with UnrealIRCd

I got it working, I needed the unset the header "Content-Security-Policy" on the web server. :( It didn't throw any error on the page, it would just never connect to the IRC server.
by barryn
Wed Oct 16, 2024 11:30 am
Forum: Generic support
Topic: [SOLVED] Trying to get any websocket IRC client to work with UnrealIRCd
Replies: 13
Views: 24584

Re: Trying to get any websocket IRC client to work with UnrealIRCd

I tried a websocket type of binary also, and that did not work either.
by barryn
Wed Oct 16, 2024 11:25 am
Forum: Generic support
Topic: [SOLVED] Trying to get any websocket IRC client to work with UnrealIRCd
Replies: 13
Views: 24584

Re: Trying to get any websocket IRC client to work with UnrealIRCd

This is the relevant section of unrealircd.conf
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 ...
by barryn
Wed Oct 16, 2024 11:20 am
Forum: Generic support
Topic: [SOLVED] Trying to get any websocket IRC client to work with UnrealIRCd
Replies: 13
Views: 24584

Re: Trying to get any websocket IRC client to work with UnrealIRCd

After you reply to this I will edit this post and remove the URL.
URL removed.
by barryn
Wed Oct 16, 2024 9:08 am
Forum: Generic support
Topic: [SOLVED] Trying to get any websocket IRC client to work with UnrealIRCd
Replies: 13
Views: 24584

Re: Trying to get any websocket IRC client to work with UnrealIRCd

Here is the full config.json with the server name redacted.

{
"windowTitle": "Kiwi IRC - The web IRC client",
"startupScreen": "welcome",
"kiwiServer": "https://redacted.redacted.com/kiwiirc",
"restricted": false,
"theme": "Default",
"themes": [
{ "name": "Default", "url": "static/themes ...
by barryn
Wed Oct 16, 2024 9:03 am
Forum: Generic support
Topic: [SOLVED] Trying to get any websocket IRC client to work with UnrealIRCd
Replies: 13
Views: 24584

Re: Trying to get any websocket IRC client to work with UnrealIRCd

My config.json

"startupOptions" : {
"server": "redacted.redacted.com",
"port": 8000,
"tls": true,
"direct": true,
"channel": "#kiwiirc-default",
"nick": "kiwi-n?"
},

Where does disconnectOnSaslFail need to be set? I have not set it and I don't see that option in either config.json or ...
by barryn
Tue Oct 15, 2024 4:35 am
Forum: Generic support
Topic: [SOLVED] Trying to get any websocket IRC client to work with UnrealIRCd
Replies: 13
Views: 24584

Re: Trying to get any websocket IRC client to work with UnrealIRCd

PS: The lounge works, but it has it's own proxy server.
by barryn
Tue Oct 15, 2024 4:34 am
Forum: Generic support
Topic: [SOLVED] Trying to get any websocket IRC client to work with UnrealIRCd
Replies: 13
Views: 24584

[SOLVED] Trying to get any websocket IRC client to work with UnrealIRCd

I have tried the example client at: https://www.unrealircd.org/files/dev/ws/websocket_unrealircd.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 ...