3 // Run the Kiwi server under a different user/group
14 * Server listen blocks
17 // Do not edit this line!
20 // Example server block
26 // Example SSL server block
29 // address: "0.0.0.0",
32 // ssl_key: "server.key",
33 // ssl_cert: "cert.pem"
36 // Network interface for outgoing connections
37 conf
.outgoing_address
= {
43 // Do we want to enable the built in Identd server?
55 // Where the client files are
56 conf
.public_http
= "client/";
58 // Max connections per connection. 0 to disable
59 conf
.max_client_conns
= 5;
61 // Max connections per server. 0 to disable.
62 // Setting is ignored if:
63 // - There is a WEBIRC password configured for the server,
64 // - Kiwi is configured to send the client's ip as a username for the server, or
65 // - Kiwi is running in restricted server mode.
66 conf
.max_server_conns
= 0;
69 * Default encoding to be used by the server
70 * As specified and limited to iconv-lite library support.
72 conf
.default_encoding
= 'utf8';
76 * Default GECOS (real name) for IRC connections
77 * %n will be replaced with the users nick
79 //conf.default_gecos = 'Web IRC Client';
85 * Array of URLs that will be loaded into the browser when the client first loads up
86 * See http://github.com/prawnsalad/KiwiIRC/wiki/Client-plugins
88 conf
.client_plugins
= [
89 // "http://server.com/kiwi/plugins/myplugin.html"
95 // Directory to find the server modules
96 conf
.module_dir
= "../server_modules/";
98 // Which modules to load
104 // WebIRC passwords enabled for this server
106 //"irc.network.com": "configured_webirc_password",
107 //"127.0.0.1": "foobar"
110 // Some IRCDs require the clients IP via the username/ident
111 conf
.ip_as_username
= [
116 // Whether to verify IRC servers' SSL certificates against built-in well-known certificate authorities
117 conf
.reject_unauthorised_certificates
= false;
122 * Reverse proxy settings
123 * Reverse proxies that have been reported to work can be found at:
124 * https://kiwiirc.com/docs/installing/proxies
127 // Whitelisted HTTP proxies in CIDR format
128 conf
.http_proxies
= ["127.0.0.1/32"];
130 // Header that contains the real-ip from the HTTP proxy
131 conf
.http_proxy_ip_header
= "x-forwarded-for";
133 // Base HTTP path to the KIWI IRC client (eg. /kiwi)
134 conf
.http_base_path
= "/kiwi";
138 * SOCKS (version 5) proxy settings
139 * This feature is only available on node 0.10.0 and above.
140 * Do not enable it if you're running 0.8 or below or Bad Things will happen.
142 conf
.socks_proxy
= {};
144 // Enable proxying outbound connections through a SOCKS proxy
145 conf
.socks_proxy
.enabled
= false;
147 // Proxy *all* outbound connections through a SOCKS proxy
148 conf
.socks_proxy
.all
= false;
150 // Use SOCKS proxy for these hosts only (if conf.sock_proxy.all === false)
151 conf
.socks_proxy
.proxy_hosts
= [
155 // Host and port for the SOCKS proxy
156 conf
.socks_proxy
.address
= '127.0.0.1';
157 conf
.socks_proxy
.port
= 1080;
159 // Username and password for the SOCKS proxy
160 // Set user to null to disable password authentication
161 conf
.socks_proxy
.user
= null;
162 conf
.socks_proxy
.pass
= null;
166 // Default quit message
167 conf
.quit_message
= "http://www.kiwiirc.com/ - A hand-crafted IRC client";
170 // Default settings for the client. These may be changed in the browser
172 server
: 'irc.kiwiirc.com',
180 channel_list_style
: 'tabs',
182 show_joins_parts
: true,
183 show_timestamps
: false,
187 window_title
: 'Kiwi IRC'
191 // If set, the client may only connect to this 1 IRC server
192 //conf.restrict_server = "irc.kiwiirc.com";
193 //conf.restrict_server_port = 6667;
194 //conf.restrict_server_ssl = false;
195 //conf.restrict_server_channel = "#kiwiirc";
196 //conf.restrict_server_channel_key = "";
197 //conf.restrict_server_password = "";
198 //conf.restrict_server_nick = "kiwi_";
204 * Do not amend the below lines unless you understand the changes!
206 module
.exports
.production
= conf
;