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