Cache clearing, default channel bug fix, embedded image clicking bug fix
[KiwiIRC.git] / node / config.json
1 {
2 "port": 7777,
3 "bind_address": "0.0.0.0",
4
5 "user": "",
6 "group": "",
7
8 "listen_ssl": false,
9 "ssl_key": "server.key",
10 "ssl_cert": "cert.pem",
11
12 "quit_message": "KiwiIRC",
13 "cap_options": [],
14
15 "handle_http": true,
16 "public_http": "./../",
17
18 "max_client_conns": 2,
19
20 "module_dir": "./kiwi_modules/",
21 "modules": ["spamfilter", "statistics"],
22
23 "webirc": true,
24 "webirc_pass": {
25 "irc.example.com": "examplepassword",
26 "127.0.0.1": "foobar"
27 },
28
29 "transports": [
30 "websocket",
31 "flashsocket",
32 "htmlfile",
33 "xhr-polling",
34 "jsonp-polling"
35 ]
36 }