1ServerType standalone
2ServerRoot $orig_apache_root
3
4PidFile $apache_root/logs/httpd.pid
5LockFile $apache_root/logs/httpd.lock
6ScoreBoardFile $apache_root/logs/httpd.scoreboard
7ResourceConfig $apache_root/conf/srm.conf
8AccessConfig $apache_root/conf/access.conf
9TypesConfig $apache_root/conf/mime.types
10
11Timeout 300
12KeepAlive On
13MaxKeepAliveRequests 10
14KeepAliveTimeout 15
15MinSpareServers 1
16MaxSpareServers 2
17StartServers 1
18MaxClients 5
19MaxRequestsPerChild 50
20
21$LoadModule
22
23Port $port
24
25$usergroup
26
27HostnameLookups Off
28
29ErrorLog $apache_root/logs/error_log
30
31$ifversion1.3{
32LogLevel debug
33LogFormat "%h %l %u %t \\"%r\\" %>s %b \\"%{Referer}i\\" \\"%{User-Agent}i\\"" combined
34CustomLog $apache_root/logs/access_log combined
35
36ServerSignature On
37}{
38TransferLog $apache_root/logs/access_log
39}
40