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;
};
};
};Code: Select all
{
"windowTitle": "UnrealIRC",
"startupScreen": "welcome",
"kiwiServer": "https://redacted.com:8001/webirc/kiwiirc/",
"restricted": true,
"theme": "Default",
"themes": [
{ "name": "Default", "url": "static/themes/default" },
{ "name": "Dark", "url": "static/themes/dark" },
{ "name": "Coffee", "url": "static/themes/coffee" },
{ "name": "GrayFox", "url": "static/themes/grayfox" },
{ "name": "Nightswatch", "url": "static/themes/nightswatch" },
{ "name": "Osprey", "url": "static/themes/osprey" },
{ "name": "Radioactive", "url": "static/themes/radioactive" },
{ "name": "Sky", "url": "static/themes/sky" },
{ "name": "Elite", "url": "static/themes/elite" }
],
"startupOptions" : {
"server": "redacted.com",
"port": 8000,
"tls": true,
"channel": "#default",
"greetingText": "UnrealIRC",
"nick": "irc_user_?",
"infoBackground": "https://redacted.com/stars.jpg",
"infoContent": "<h3>Welcome to the UnrealIRC page!</h3>",
"direct": true
},
"disconnectOnSaslFail": false,
"showColorPicker": true,
"warnOnExit": true
}