Removed cache logging
[KiwiIRC.git] / node / config.json
index c505a2f9df3a38b85e43b09ed8b92eb665ef6457..132c83550c077fd02a1566db7cb77b2ec1781d26 100644 (file)
@@ -1,11 +1,36 @@
 {
     "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":         "./../"
+    "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"
+                        ]
 }