Removed cache logging
[KiwiIRC.git] / node / config.json
index 580c19ef873188faf3c4766b9620d863671571d4..132c83550c077fd02a1566db7cb77b2ec1781d26 100644 (file)
@@ -1,8 +1,36 @@
 {
-    "port":           7777,
-    "listen_ssl":     false,
-    "ssl_key":        "server.key",
-    "ssl_cert":       "cert.pem",
-    "quit_message":   "KiwiIRC",
-    "cap_options":    []
+    "port":             7777,
+    "bind_address":     "0.0.0.0",
+
+    "user":                            "",
+    "group":                   "",
+
+    "listen_ssl":       false,
+    "ssl_key":          "server.key",
+    "ssl_cert":         "cert.pem",
+
+    "quit_message":     "KiwiIRC",
+    "cap_options":      [],
+
+    "handle_http":      true,
+    "public_http":         "./../",
+
+    "max_client_conns": 2,
+
+    "module_dir":       "./kiwi_modules/",
+    "modules":          ["spamfilter", "statistics"],
+    
+    "webirc":           true,
+    "webirc_pass":      {
+                            "irc.example.com":  "examplepassword",
+                            "127.0.0.1":        "foobar"
+                        },
+
+    "transports":       [
+                            "websocket",
+                            "flashsocket",
+                            "htmlfile",
+                            "xhr-polling",
+                            "jsonp-polling"
+                        ]
 }