updated example configuration
authorpk910 <philipp@zoelle1.de>
Thu, 2 Feb 2012 20:05:40 +0000 (21:05 +0100)
committerpk910 <philipp@zoelle1.de>
Thu, 2 Feb 2012 20:05:40 +0000 (21:05 +0100)
neonserv.example.conf

index a6b3a6101ee841907f54ee84a07d04323ed1754f..334d7308e15aa3924dbbd340e04fd349f5db6548 100644 (file)
@@ -9,7 +9,23 @@
     "pass" = "password";
     "base" = "neonserv";
 };
+"statistics" {
+    "enable" = 0;
+    "frequency" = 5; //minutes
+    "include_lusers" = 1; //general network statistics
+    "execute" = "php scripts/statistic.php";
+    /* parameters:
+     - visible users
+     - visible chanusers
+     - visible channels
+     - privmsg per minute
+     - commands per minute
+     - network users
+     - network channels
+    */
+};
 "General" {
+    "worker_threads" = 5; //threads
     "alertchan" = "";
     "have_halfop" = 0;
     "CheckAuths" {
     };
 };
 "QServer" {
-    "enabled" = 1;
+    "enabled" = 0;
     "port" = 7499;
     "pass" = "blaa";
-};
\ No newline at end of file
+};
+"log" { //neonserv.log
+    /*
+     1 - INFO
+     2 - ERROR
+     4 - RAW
+     8 - MYSQL
+    */
+    "loglevel" = 3;
+};