OLD | NEW |
| 1 ServerTokens Prod |
1 ServerType standalone | 2 ServerType standalone |
2 | 3 |
3 ServerRoot "/usr" | 4 ServerRoot "/usr" |
4 LockFile "/tmp/WebKit/httpd.lock" | 5 LockFile "/tmp/WebKit/httpd.lock" |
5 PidFile "/tmp/WebKit/httpd.pid" | 6 PidFile "/tmp/WebKit/httpd.pid" |
6 ScoreBoardFile "/tmp/WebKit/httpd.scoreboard" | 7 ScoreBoardFile "/tmp/WebKit/httpd.scoreboard" |
7 | 8 |
8 ResourceConfig /dev/null | 9 ResourceConfig /dev/null |
9 AccessConfig /dev/null | 10 AccessConfig /dev/null |
10 | 11 |
11 Timeout 300 | 12 Timeout 300 |
12 KeepAlive On | 13 KeepAlive On |
13 MaxKeepAliveRequests 100 | 14 # Setting this value too low may change header size sometimes making flakey test
s. |
14 KeepAliveTimeout 15 | 15 MaxKeepAliveRequests 0 |
| 16 KeepAliveTimeout 9999 |
15 | 17 |
16 MinSpareServers 1 | 18 MinSpareServers 1 |
17 MaxSpareServers 5 | 19 MaxSpareServers 5 |
18 StartServers 1 | 20 StartServers 1 |
19 MaxClients 150 | 21 MaxClients 150 |
20 MaxRequestsPerChild 100000 | 22 MaxRequestsPerChild 100000 |
21 | 23 |
22 LoadModule config_log_module lib/apache/mod_log_config.dll | 24 LoadModule config_log_module lib/apache/mod_log_config.dll |
23 LoadModule mime_module lib/apache/mod_mime.dll | 25 LoadModule mime_module lib/apache/mod_mime.dll |
24 LoadModule negotiation_module lib/apache/mod_negotiation.dll | 26 LoadModule negotiation_module lib/apache/mod_negotiation.dll |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
166 Order allow,deny | 168 Order allow,deny |
167 Deny from all | 169 Deny from all |
168 Satisfy All | 170 Satisfy All |
169 </Files> | 171 </Files> |
170 | 172 |
171 <Directory ~ ".*\.\.namedfork"> | 173 <Directory ~ ".*\.\.namedfork"> |
172 Order allow,deny | 174 Order allow,deny |
173 Deny from all | 175 Deny from all |
174 Satisfy All | 176 Satisfy All |
175 </Directory> | 177 </Directory> |
OLD | NEW |