Topicbar usability improvements
[KiwiIRC.git] / server / config.json
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 "http_base_path": "/client",
28 "http_proxies": ["127.0.0.1"],
29
30 "max_client_conns": 2,
31
32 "module_dir": "./kiwi_modules/",
33 "modules": ["spamfilter", "statistics"],
34
35 "webirc": true,
36 "webirc_pass": {
37 "irc.example.com": "examplepassword",
38 "127.0.0.1": "foobar"
39 },
40 "ip_as_username": [],
41
42 "transports": [
43 "websocket",
44 "flashsocket",
45 "htmlfile",
46 "xhr-polling",
47 "jsonp-polling"
48 ],
49
50 "client_defaults": {
51 "server": "irc.anonnet.org",
52 "port": 6667,
53 "port_ssl": 6697,
54 "ssl": false
55 }
56 }