From a1a39db1eb2716358e7b737c217f98f7b0dccfc6 Mon Sep 17 00:00:00 2001 From: pk910 Date: Thu, 2 Feb 2012 21:05:40 +0100 Subject: [PATCH] updated example configuration --- neonserv.example.conf | 29 +++++++++++++++++++++++++++-- 1 file changed, 27 insertions(+), 2 deletions(-) diff --git a/neonserv.example.conf b/neonserv.example.conf index a6b3a61..334d730 100644 --- a/neonserv.example.conf +++ b/neonserv.example.conf @@ -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" { @@ -23,7 +39,16 @@ }; }; "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; +}; -- 2.20.1