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"
38 // Do we want to enable the built in Identd server?
50 // Where the client files are
51 conf
.public_http
= "client/";
53 // Max connections per connection. 0 to disable
54 conf
.max_client_conns
= 5;
56 // Max connections per server. 0 to disable.
57 // Setting is ignored if:
58 // - There is a WEBIRC password configured for the server,
59 // - Kiwi is configured to send the client's ip as a username for the server, or
60 // - Kiwi is running in restricted server mode.
61 conf
.max_server_conns
= 0;
66 * Array of URLs that will be loaded into the browser when the client first loads up
67 * See http://github.com/prawnsalad/KiwiIRC/wiki/Client-plugins
69 conf
.client_plugins
= [
70 // "http://server.com/kiwi/plugins/myplugin.html"
75 // Enabled CAP extensions (See ENTER URL TO CAP INFO HERE PLS)
76 conf
.cap_options
= [];
81 // Directory to find the server modules
82 conf
.module_dir
= "../server_modules/";
84 // Which modules to load
90 // WebIRC passwords enabled for this server
92 //"irc.network.com": "configured_webirc_password",
93 //"127.0.0.1": "foobar"
96 // Some IRCDs require the clients IP via the username/ident
97 conf
.ip_as_username
= [
102 // Whether to verify IRC servers' SSL certificates against built-in well-known certificate authorities
103 conf
.reject_unauthorised_certificates
= false;
108 * Reverse proxy settings
109 * Reverse proxies that have been reported to work can be found at:
110 * http://github.com/prawnsalad/KiwiIRC/wiki/Running-behind-a-proxy
113 // Whitelisted HTTP proxies in CIDR format
114 conf
.http_proxies
= ["127.0.0.1/32"];
116 // Header that contains the real-ip from the HTTP proxy
117 conf
.http_proxy_ip_header
= "x-forwarded-for";
119 // Base HTTP path to the KIWI IRC client (eg. /kiwi)
120 conf
.http_base_path
= "/kiwi";
124 * SOCKS (version 5) proxy settings
125 * This feature is only available on node 0.10.0 and above.
126 * Do not enable it if you're running 0.8 or below or Bad Things will happen.
128 conf
.socks_proxy
= {};
130 // Enable proxying outbound connections through a SOCKS proxy
131 conf
.socks_proxy
.enabled
= false;
133 // Proxy *all* outbound connections through a SOCKS proxy
134 conf
.socks_proxy
.all
= false;
136 // Use SOCKS proxy for these hosts only (if conf.sock_proxy.all === false)
137 conf
.socks_proxy
.proxy_hosts
= [
141 // Host and port for the SOCKS proxy
142 conf
.socks_proxy
.address
= '127.0.0.1';
143 conf
.socks_proxy
.port
= 1080;
145 // Username and password for the SOCKS proxy
146 // Set user to null to disable password authentication
147 conf
.socks_proxy
.user
= null;
148 conf
.socks_proxy
.pass
= null;
151 // Enabled transports for the browser to use
163 // Default quit message
164 conf
.quit_message
= "http://www.kiwiirc.com/ - A hand-crafted IRC client";
167 // Default settings for the client. These may be changed in the browser
169 server
: 'irc.kiwiirc.com',
176 channel_list_style
: 'tabs',
178 show_joins_parts
: true,
179 show_timestamps
: false,
185 // If set, the client may only connect to this 1 IRC server
186 //conf.restrict_server = "irc.kiwiirc.com";
187 //conf.restrict_server_port = 6667;
188 //conf.restrict_server_ssl = false;
189 //conf.restrict_server_channel = "#kiwiirc";
190 //conf.restrict_server_password = "";
191 //conf.restrict_server_nick = "kiwi_";
197 * Do not ammend the below lines unless you understand the changes!
199 module
.exports
.production
= conf
;