X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=config.example.js;h=d1f21e7769eea78494784f1c037db8e8d23cf054;hb=4e195edb4ee85ccd7d7defed40a2c4c1d99ad8c3;hp=1314152faca35ffd7e098867d91271a7372bcfea;hpb=ac915057a143b0e4c44f7a582457597a4f0dc188;p=KiwiIRC.git diff --git a/config.example.js b/config.example.js index 1314152..d1f21e7 100644 --- a/config.example.js +++ b/config.example.js @@ -55,6 +55,10 @@ conf.identd = { // Where the client files are conf.public_http = "client/"; +// Transports available to the client. +// Behind an Apache reverse proxy? Uncomment the below - Apache does not support websockets! +//conf.client_transports = ['polling']; + // Max connections per connection. 0 to disable conf.max_client_conns = 5; @@ -80,6 +84,13 @@ conf.default_encoding = 'utf8'; //conf.default_gecos = 'Web IRC Client'; +/* +* Auto reconnect if the IRC server disconnects a kiwi user +* Hundreds of connected users getting disconnected then reconnecting at once may see +* high CPU usage causing further dropouts. Set to false if under high usage. +*/ +conf.ircd_reconnect = true; + /* * Client side plugins @@ -102,11 +113,14 @@ conf.modules = []; -// WebIRC passwords enabled for this server -conf.webirc_pass = { - //"irc.network.com": "configured_webirc_password", - //"127.0.0.1": "foobar" -}; +// WebIRC password enabled for this server +//conf.webirc_pass = "foobar"; + +// Multiple WebIRC passwords may be used for multiple servers +//conf.webirc_pass = { +// "irc.network.com": "configured_webirc_password", +// "127.0.0.1": "foobar" +//}; // Some IRCDs require the clients IP via the username/ident conf.ip_as_username = [ @@ -178,6 +192,7 @@ conf.client = { nick: 'kiwi_?', settings: { theme: 'relaxed', + text_theme: 'default', channel_list_style: 'tabs', scrollback: 250, show_joins_parts: true, @@ -185,7 +200,7 @@ conf.client = { use_24_hour_timestamps: true, mute_sounds: false, show_emoticons: true, - count_all_activity: true + count_all_activity: false }, window_title: 'Kiwi IRC' };