-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathconfig.php
41 lines (29 loc) · 799 Bytes
/
config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?php
// Monitor configuration
return array(
// Default scan path is `script root`
// 'root' => '/root/to/scan',
// allowed multi root
// 'root' => ['/first', '/second', ...]
//'root' => array(
// __DIR__ . '\\1',
// __DIR__ . '\\2'
//),
// skip this dirs
//'ignore_dirs' => [
// 'C:\\path\\fs_monitor\\2\\test1'
//],
// ServerTag for text reports, default _SERVER[SERVER_NAME]
// 'server' => 'server_name',
// files pattern
'files' => '(\.php.?|\.htaccess|\.txt)$',
// write logs to ./logs/Ym/d-m-y.log
'log' => true,
// notify administrator email
'mail' => array(
'from' => 'info@skillz.ru',
'to' => 'rustyj4ck@gmail.com',
// disabled by default
'enable' => false
)
);