added new auth-check security feature
[NeonServV5.git] / neonserv.example.conf
1 /*
2   NeonServ example configuration
3 */
4
5 "MySQL" {
6     "host" = "127.0.0.1";
7     "port" = 3306;
8     "user" = "neonserv";
9     "pass" = "password";
10     "base" = "neonserv";
11 };
12 "General" {
13     "alertchan" = "";
14     "have_halfop" = 0;
15     "CheckAuths" {
16         "enabled" = 1;
17         "start_time" = 3; //24h format
18         "duration" = 180; //minutes
19         "interval" = 2; //seconds
20         "min_unckecked" = 172800; //check auth only if unchecked for x seconds
21         //180 miutes, every 2 seconds: 5400 auth checks
22         "alertchan" = "#krypton.intern";
23     };
24 };
25 "QServer" {
26     "enabled" = 1;
27     "port" = 7499;
28     "pass" = "blaa";
29 };