Subversion Repositories prepend

Rev

Rev 9 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
9 daniel-mar 1
<?php
2
 
3
// PLEASE DO NOT EDIT THIS FILE!
4
// INSTEAD, COPY IT TO config.local.php AND THEN EDIT IT
5
 
6
// Add directories which need mysql_* methods (plugin 001)
7
// Add '!' in front of a dir to exclude the directory instead of including it
8
$xxx_vts_prepend_config['directories_need_mysql'] = array(
9
        '/'
10
);
11
 
12
// Add directories which need register globals (plugin 002)
13
// Add '!' in front of a dir to exclude the directory instead of including it
14
$xxx_vts_prepend_config['directories_need_registerglobals'] = array(
15
#       '/home/user1/',
16
#       '!/home/user1/secure/',
17
#       '/home/user2/'
18
);
19
 
20
// Add directories which need ereg_* methods (plugin 003)
21
// Add '!' in front of a dir to exclude the directory instead of including it
22
$xxx_vts_prepend_config['directories_need_ereg'] = array(
23
#       '/home/user1/',
24
#       '!/home/user1/secure/',
25
#       '/home/user2/'
26
);
27
 
28
// Add directories which are protected with a (weak) XSS WAF (plugin 004)
29
// Add '!' in front of a dir to exclude the directory instead of including it
30
$xxx_vts_prepend_config['directories_need_anti_xss'] = array(
31
#       '/home/user1/',
32
#       '!/home/user1/secure/',
33
#       '/home/user2/'
34
);