| OLD | NEW |
| 1 ServerTokens OS | 1 ServerTokens Prod |
| 2 ServerRoot "/usr/lib/apache2" | 2 ServerRoot "/usr/lib/apache2" |
| 3 | 3 |
| 4 PidFile "/tmp/WebKit/httpd.pid" | 4 PidFile "/tmp/WebKit/httpd.pid" |
| 5 ScoreBoardFile "/tmp/WebKit/httpd.scoreboard" | 5 ScoreBoardFile "/tmp/WebKit/httpd.scoreboard" |
| 6 | 6 |
| 7 Timeout 300 | 7 Timeout 300 |
| 8 KeepAlive On | 8 KeepAlive On |
| 9 MaxKeepAliveRequests 100 | 9 # Setting this value too low may change header size sometimes making flakey test
s. |
| 10 KeepAliveTimeout 15 | 10 MaxKeepAliveRequests 0 |
| 11 KeepAliveTimeout 9999 |
| 11 | 12 |
| 12 MinSpareServers 1 | 13 MinSpareServers 1 |
| 13 MaxSpareServers 5 | 14 MaxSpareServers 5 |
| 14 StartServers 1 | 15 StartServers 1 |
| 15 MaxClients 150 | 16 MaxClients 150 |
| 16 MaxRequestsPerChild 100000 | 17 MaxRequestsPerChild 100000 |
| 17 | 18 |
| 18 LoadModule mpm_prefork_module modules/mod_mpm_prefork.so | 19 LoadModule mpm_prefork_module modules/mod_mpm_prefork.so |
| 19 LoadModule authz_core_module modules/mod_authz_core.so | 20 LoadModule authz_core_module modules/mod_authz_core.so |
| 20 LoadModule authz_host_module modules/mod_authz_host.so | 21 LoadModule authz_host_module modules/mod_authz_host.so |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 # | 140 # |
| 140 # Apple-specific filesystem protection. | 141 # Apple-specific filesystem protection. |
| 141 # | 142 # |
| 142 <Files "rsrc"> | 143 <Files "rsrc"> |
| 143 Require all denied | 144 Require all denied |
| 144 </Files> | 145 </Files> |
| 145 | 146 |
| 146 <Directory ~ ".*\.\.namedfork"> | 147 <Directory ~ ".*\.\.namedfork"> |
| 147 Require all denied | 148 Require all denied |
| 148 </Directory> | 149 </Directory> |
| OLD | NEW |