Bash helper file
[KiwiIRC.git] / server_merging / config.json
CommitLineData
94423dfc
D
1{
2 "servers": [
3 {
4 "secure": true,
5 "port": 7777,
6 "address": "0.0.0.0",
7
8 "ssl_key": "server.key",
9 "ssl_cert": "cert.pem"
10 },
11 {
12 "secure": false,
13 "port": 7778,
14 "address": "0.0.0.0"
15 }
16
17 ],
18
19 "user": "",
20 "group": "",
21
22 "quit_message": "KiwiIRC",
23 "cap_options": [],
24
25 "handle_http": true,
26 "public_http": "./../client/",
27
28 "max_client_conns": 2,
29
30 "module_dir": "./kiwi_modules/",
31 "modules": ["spamfilter", "statistics"],
32
33 "webirc": true,
34 "webirc_pass": {
35 "irc.example.com": "examplepassword",
36 "127.0.0.1": "foobar"
37 },
38
39 "transports": [
40 "websocket",
41 "flashsocket",
42 "htmlfile",
43 "xhr-polling",
44 "jsonp-polling"
45 ],
46
47 "client_defaults": {
48 "server": "irc.anonnet.org",
49 "port": 6667,
50 "port_ssl": 6697,
51 "ssl": false
52 }
53}