Mergability with development branch
[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
JA
56// Max connections per server. 0 to disable.
57// Setting is ignored if there is a WEBIRC password configured for the server or kiwi is running in restricted server mode.
58conf.max_server_conns = 0;
59
2eec3842
D
60
61/*
62 * Client side plugins
63 * Array of URLs that will be loaded into the browser when the client first loads up
64 * See http://github.com/prawnsalad/KiwiIRC/wiki/Client-plugins
65 */
66conf.client_plugins = [
67 // "http://server.com/kiwi/plugins/myplugin.html"
68];
69
70
71
ab15f618
D
72// Enabled CAP extensions (See ENTER URL TO CAP INFO HERE PLS)
73conf.cap_options = [];
74
75
76
77
78// Directory to find the server modules
d8002ae0 79conf.module_dir = "../server_modules/";
ab15f618
D
80
81// Which modules to load
991091b7 82conf.modules = [];
ab15f618
D
83
84
85
86
87// WebIRC passwords enabled for this server
88conf.webirc_pass = {
89 //"irc.network.com": "configured_webirc_password",
90 //"127.0.0.1": "foobar"
91};
92
93// Some IRCDs require the clients IP via the username/ident
94conf.ip_as_username = [
2087f5d1
JA
95 //"irc.network.com",
96 //"127.0.0.1"
ab15f618
D
97];
98
831b41b0
JA
99// Whether to verify IRC servers' SSL certificates against built-in well-known certificate authorities
100conf.reject_unauthorised_certificates = false;
ab15f618
D
101
102
d99877b8
D
103
104/*
105 * Reverse proxy settings
106 * Reverse proxies that have been reported to work can be found at:
107 * http://github.com/prawnsalad/KiwiIRC/wiki/Running-behind-a-proxy
108 */
76391784 109
d99877b8
D
110// Whitelisted HTTP proxies in CIDR format
111conf.http_proxies = ["127.0.0.1/32"];
c6e3ed44 112
31a18fa4
D
113// Header that contains the real-ip from the HTTP proxy
114conf.http_proxy_ip_header = "x-forwarded-for";
115
d99877b8
D
116// Base HTTP path to the KIWI IRC client (eg. /kiwi)
117conf.http_base_path = "/kiwi";
118
119
120
121// Enabled transports for the browser to use
ab15f618
D
122conf.transports = [
123 "websocket",
124 "flashsocket",
125 "htmlfile",
126 "xhr-polling",
127 "jsonp-polling"
128];
129
d99877b8 130
b65ad8f1 131
ab15f618
D
132
133// Default quit message
1360a454 134conf.quit_message = "http://www.kiwiirc.com/ - A hand-crafted IRC client";
ab15f618
D
135
136
76391784
D
137// Default settings for the client. These may be changed in the browser
138conf.client = {
139 server: 'irc.kiwiirc.com',
140 port: 6697,
141 ssl: true,
142 channel: '#kiwiirc',
143 nick: 'kiwi_?'
144};
145
146
46f41dfb 147// If set, the client may only connect to this 1 IRC server
93e84f75
D
148//conf.restrict_server = "irc.kiwiirc.com";
149//conf.restrict_server_port = 6667;
150//conf.restrict_server_ssl = false;
151//conf.restrict_server_channel = "#kiwiirc";
152//conf.restrict_server_password = "";
153//conf.restrict_server_nick = "kiwi_";
ab15f618
D
154
155
76391784
D
156
157
ab15f618
D
158/*
159 * Do not ammend the below lines unless you understand the changes!
160 */
2087f5d1 161module.exports.production = conf;