Handle hostnames with upper-case letters
[webmin.git] / apache / prefork.pl
1 # prefork.pl
2 # Defines editors for the pre-forking module in apache 2.0.
3 # The actual functions for all of these are still in core.pl
4
5 sub prefork_directives
6 {
7 local $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 ] ];
21 return &make_directives($rv, $_[0], "prefork");
22 }
23
24