1# mod_mpm_prefork.pl
2# Defines editors for the pre-forking module in apache 2.4.
3# The actual functions for all of these are still in core.pl
4
5sub mod_mpm_prefork_directives
6{
7local $rv;
8$rv = [ [ 'CoreDumpDirectory', 0, 9, 'global', 2.0 ],
9	[ 'BindAddress Listen Port', 1, 1, 'global', 2.0, 10 ],
10	[ 'ListenBacklog', 0, 1, 'global', 2.0 ],
11	[ 'LockFile', 0, 9, 'global', 2.0 ],
12	[ 'MaxRequestsPerChild', 0, 0, 'global', 2.0 ],
13	[ 'MinSpareServers', 0, 0, 'global', 2.0 ],
14	[ 'MaxSpareServers', 0, 0, 'global', 2.0 ],
15	[ 'PidFile', 0, 9, 'global', 2.0 ],
16	[ 'ScoreBoardFile', 0, 9, 'global', 2.0 ],
17	[ 'SendBufferSize', 0, 1, 'global', 2.0 ],
18	[ 'StartServers', 0, 0, 'global', 2.0 ],
19	[ 'Group', 0, 8, 'global', 2.0 ],
20	[ 'User', 0, 8, 'global', 2.0, 10 ] ];
21return &make_directives($rv, $_[0], "mod_mpm_prefork");
22}
23
24
25