Merge branch 'master' of github.com:prawnsalad/KiwiIRC
[KiwiIRC.git] / server / config.json
1 {
2 "ports": [
3 {
4 "secure": true,
5 "number": 7777
6 },
7 {
8 "secure": false,
9 "number": 7778
10 }
11
12 ],
13 "bind_address": "0.0.0.0",
14
15 "user": "",
16 "group": "",
17
18 "ssl_key": "server.key",
19 "ssl_cert": "cert.pem",
20
21 "quit_message": "KiwiIRC",
22 "cap_options": [],
23
24 "handle_http": true,
25 "public_http": "./../client/",
26
27 "max_client_conns": 2,
28
29 "module_dir": "./kiwi_modules/",
30 "modules": ["spamfilter", "statistics"],
31
32 "webirc": true,
33 "webirc_pass": {
34 "irc.example.com": "examplepassword",
35 "127.0.0.1": "foobar"
36 },
37
38 "transports": [
39 "websocket",
40 "flashsocket",
41 "htmlfile",
42 "xhr-polling",
43 "jsonp-polling"
44 ]
45 }