Remove unused conf.cap_options from example config
[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
7496de01 36// Network interface for outgoing connections
e412195d
D
37conf.outgoing_address = {
38 IPv4: '0.0.0.0'
39 //IPv6: '::'
b156e01a 40};
ab15f618 41
8baf9099 42
adefb6bd
D
43// Do we want to enable the built in Identd server?
44conf.identd = {
45 enabled: false,
46 port: 113,
47 address: "0.0.0.0"
48};
49
50
51
8baf9099
D
52
53
54
ab15f618
D
55// Where the client files are
56conf.public_http = "client/";
57
13d7faa3 58// Max connections per connection. 0 to disable
ab15f618
D
59conf.max_client_conns = 5;
60
8838bdd6 61// Max connections per server. 0 to disable.
8ae445ce
JA
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.
8838bdd6
JA
66conf.max_server_conns = 0;
67
d1b3e8b3 68/*
3efb4f33 69* Default encoding to be used by the server
d1b3e8b3 70* As specified and limited to iconv-lite library support.
d1b3e8b3 71*/
396ea0d9 72conf.default_encoding = 'utf8';
2eec3842
D
73
74/*
75 * Client side plugins
76 * Array of URLs that will be loaded into the browser when the client first loads up
77 * See http://github.com/prawnsalad/KiwiIRC/wiki/Client-plugins
78 */
79conf.client_plugins = [
80 // "http://server.com/kiwi/plugins/myplugin.html"
81];
82
83
84
ab15f618
D
85
86// Directory to find the server modules
d8002ae0 87conf.module_dir = "../server_modules/";
ab15f618
D
88
89// Which modules to load
991091b7 90conf.modules = [];
ab15f618
D
91
92
93
94
95// WebIRC passwords enabled for this server
96conf.webirc_pass = {
97 //"irc.network.com": "configured_webirc_password",
98 //"127.0.0.1": "foobar"
99};
100
101// Some IRCDs require the clients IP via the username/ident
102conf.ip_as_username = [
86d127f9
PV
103 //"irc.network.com",
104 //"127.0.0.1"
ab15f618
D
105];
106
831b41b0
JA
107// Whether to verify IRC servers' SSL certificates against built-in well-known certificate authorities
108conf.reject_unauthorised_certificates = false;
ab15f618
D
109
110
d99877b8
D
111
112/*
113 * Reverse proxy settings
114 * Reverse proxies that have been reported to work can be found at:
b54438a9 115 * https://kiwiirc.com/docs/installing/proxies
d99877b8 116 */
76391784 117
d99877b8
D
118// Whitelisted HTTP proxies in CIDR format
119conf.http_proxies = ["127.0.0.1/32"];
c6e3ed44 120
31a18fa4
D
121// Header that contains the real-ip from the HTTP proxy
122conf.http_proxy_ip_header = "x-forwarded-for";
123
d99877b8
D
124// Base HTTP path to the KIWI IRC client (eg. /kiwi)
125conf.http_base_path = "/kiwi";
126
127
ac0b278c 128/*
57c22370 129 * SOCKS (version 5) proxy settings
1515556c
JA
130 * This feature is only available on node 0.10.0 and above.
131 * Do not enable it if you're running 0.8 or below or Bad Things will happen.
ac0b278c
JA
132 */
133conf.socks_proxy = {};
134
135// Enable proxying outbound connections through a SOCKS proxy
136conf.socks_proxy.enabled = false;
137
138// Proxy *all* outbound connections through a SOCKS proxy
139conf.socks_proxy.all = false;
140
141// Use SOCKS proxy for these hosts only (if conf.sock_proxy.all === false)
142conf.socks_proxy.proxy_hosts = [
143 "irc.example.com"
144];
145
146// Host and port for the SOCKS proxy
147conf.socks_proxy.address = '127.0.0.1';
148conf.socks_proxy.port = 1080;
149
150// Username and password for the SOCKS proxy
151// Set user to null to disable password authentication
152conf.socks_proxy.user = null;
153conf.socks_proxy.pass = null;
154
d99877b8 155
ab15f618
D
156
157// Default quit message
1360a454 158conf.quit_message = "http://www.kiwiirc.com/ - A hand-crafted IRC client";
ab15f618
D
159
160
76391784
D
161// Default settings for the client. These may be changed in the browser
162conf.client = {
163 server: 'irc.kiwiirc.com',
164 port: 6697,
165 ssl: true,
166 channel: '#kiwiirc',
6d86afeb 167 channel_key: '',
1cfc4800
JA
168 nick: 'kiwi_?',
169 settings: {
170 theme: 'relaxed',
171 channel_list_style: 'tabs',
172 scrollback: 250,
173 show_joins_parts: true,
174 show_timestamps: false,
2eacc942
JA
175 mute_sounds: false,
176 show_emoticons: true
1cfc4800 177 }
76391784
D
178};
179
180
46f41dfb 181// If set, the client may only connect to this 1 IRC server
93e84f75
D
182//conf.restrict_server = "irc.kiwiirc.com";
183//conf.restrict_server_port = 6667;
184//conf.restrict_server_ssl = false;
185//conf.restrict_server_channel = "#kiwiirc";
6d86afeb 186//conf.restrict_server_channel_key = "";
93e84f75
D
187//conf.restrict_server_password = "";
188//conf.restrict_server_nick = "kiwi_";
ab15f618
D
189
190
76391784
D
191
192
ab15f618
D
193/*
194 * Do not ammend the below lines unless you understand the changes!
195 */
813ae69a 196module.exports.production = conf;