Update README.md
[KiwiIRC.git] / config.example.js
CommitLineData
ab15f618
D
1var conf = {};
2
3// Run the Kiwi server under a different user/group
4conf.user = "";
5conf.group = "";
6
7
11dbb00f
D
8// Log file location
9conf.log = "kiwi.log";
10
11
8baf9099
D
12
13/*
14 * Server listen blocks
15 */
16
17// Do not edit this line!
ab15f618
D
18conf.servers = [];
19
8baf9099 20// Example server block
3be87cdd
D
21conf.servers.push({
22 port: 7778,
23 address: "0.0.0.0"
24});
25
ab15f618 26// Example SSL server block
38da7139
D
27//conf.servers.push({
28// port: 7777,
29// address: "0.0.0.0",
30//
31// ssl: true,
32// ssl_key: "server.key",
33// ssl_cert: "cert.pem"
34//});
ab15f618 35
ab15f618 36
8baf9099 37
adefb6bd
D
38// Do we want to enable the built in Identd server?
39conf.identd = {
40 enabled: false,
41 port: 113,
42 address: "0.0.0.0"
43};
44
45
46
8baf9099
D
47
48
49
ab15f618
D
50// Where the client files are
51conf.public_http = "client/";
52
13d7faa3 53// Max connections per connection. 0 to disable
ab15f618
D
54conf.max_client_conns = 5;
55
8838bdd6 56// Max connections per server. 0 to disable.
8ae445ce
JA
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.
8838bdd6
JA
61conf.max_server_conns = 0;
62
2eec3842
D
63
64/*
65 * Client side plugins
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
68 */
69conf.client_plugins = [
70 // "http://server.com/kiwi/plugins/myplugin.html"
71];
72
73
74
ab15f618
D
75// Enabled CAP extensions (See ENTER URL TO CAP INFO HERE PLS)
76conf.cap_options = [];
77
78
79
80
81// Directory to find the server modules
d8002ae0 82conf.module_dir = "../server_modules/";
ab15f618
D
83
84// Which modules to load
991091b7 85conf.modules = [];
ab15f618
D
86
87
88
89
90// WebIRC passwords enabled for this server
91conf.webirc_pass = {
92 //"irc.network.com": "configured_webirc_password",
93 //"127.0.0.1": "foobar"
94};
95
96// Some IRCDs require the clients IP via the username/ident
97conf.ip_as_username = [
86d127f9
PV
98 //"irc.network.com",
99 //"127.0.0.1"
ab15f618
D
100];
101
831b41b0
JA
102// Whether to verify IRC servers' SSL certificates against built-in well-known certificate authorities
103conf.reject_unauthorised_certificates = false;
ab15f618
D
104
105
d99877b8
D
106
107/*
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
111 */
76391784 112
d99877b8
D
113// Whitelisted HTTP proxies in CIDR format
114conf.http_proxies = ["127.0.0.1/32"];
c6e3ed44 115
31a18fa4
D
116// Header that contains the real-ip from the HTTP proxy
117conf.http_proxy_ip_header = "x-forwarded-for";
118
d99877b8
D
119// Base HTTP path to the KIWI IRC client (eg. /kiwi)
120conf.http_base_path = "/kiwi";
121
122
ac0b278c 123/*
57c22370 124 * SOCKS (version 5) proxy settings
1515556c
JA
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.
ac0b278c
JA
127 */
128conf.socks_proxy = {};
129
130// Enable proxying outbound connections through a SOCKS proxy
131conf.socks_proxy.enabled = false;
132
133// Proxy *all* outbound connections through a SOCKS proxy
134conf.socks_proxy.all = false;
135
136// Use SOCKS proxy for these hosts only (if conf.sock_proxy.all === false)
137conf.socks_proxy.proxy_hosts = [
138 "irc.example.com"
139];
140
141// Host and port for the SOCKS proxy
142conf.socks_proxy.address = '127.0.0.1';
143conf.socks_proxy.port = 1080;
144
145// Username and password for the SOCKS proxy
146// Set user to null to disable password authentication
147conf.socks_proxy.user = null;
148conf.socks_proxy.pass = null;
149
d99877b8
D
150
151// Enabled transports for the browser to use
ab15f618
D
152conf.transports = [
153 "websocket",
154 "flashsocket",
155 "htmlfile",
156 "xhr-polling",
157 "jsonp-polling"
158];
159
d99877b8 160
b65ad8f1 161
ab15f618
D
162
163// Default quit message
1360a454 164conf.quit_message = "http://www.kiwiirc.com/ - A hand-crafted IRC client";
ab15f618
D
165
166
76391784
D
167// Default settings for the client. These may be changed in the browser
168conf.client = {
169 server: 'irc.kiwiirc.com',
170 port: 6697,
171 ssl: true,
172 channel: '#kiwiirc',
173 nick: 'kiwi_?'
174};
175
176
46f41dfb 177// If set, the client may only connect to this 1 IRC server
93e84f75
D
178//conf.restrict_server = "irc.kiwiirc.com";
179//conf.restrict_server_port = 6667;
180//conf.restrict_server_ssl = false;
181//conf.restrict_server_channel = "#kiwiirc";
182//conf.restrict_server_password = "";
183//conf.restrict_server_nick = "kiwi_";
ab15f618
D
184
185
76391784
D
186
187
ab15f618
D
188/*
189 * Do not ammend the below lines unless you understand the changes!
190 */
813ae69a 191module.exports.production = conf;