| OLD | NEW |
| 1 ServerRoot "/usr" | |
| 2 | |
| 3 LockFile "/tmp/WebKit/httpd.lock" | 1 LockFile "/tmp/WebKit/httpd.lock" |
| 4 PidFile "/tmp/WebKit/httpd.pid" | |
| 5 ScoreBoardFile "/tmp/WebKit/httpd.scoreboard" | 2 ScoreBoardFile "/tmp/WebKit/httpd.scoreboard" |
| 6 | 3 |
| 7 Timeout 300 | 4 Timeout 300 |
| 8 KeepAlive On | 5 KeepAlive On |
| 9 MaxKeepAliveRequests 100 | 6 MaxKeepAliveRequests 100 |
| 10 KeepAliveTimeout 15 | 7 KeepAliveTimeout 15 |
| 11 | 8 |
| 12 MinSpareServers 1 | |
| 13 MaxSpareServers 5 | |
| 14 StartServers 1 | |
| 15 MaxClients 150 | 9 MaxClients 150 |
| 16 MaxRequestsPerChild 100000 | 10 MaxRequestsPerChild 100000 |
| 17 | 11 |
| 18 LoadModule authz_host_module libexec/apache2/mod_authz_host.so | 12 LoadModule authz_host_module libexec/apache2/mod_authz_host.so |
| 19 LoadModule include_module libexec/apache2/mod_include.so | 13 LoadModule include_module libexec/apache2/mod_include.so |
| 20 LoadModule log_config_module libexec/apache2/mod_log_config.so | 14 LoadModule log_config_module libexec/apache2/mod_log_config.so |
| 21 LoadModule headers_module libexec/apache2/mod_headers.so | 15 LoadModule headers_module libexec/apache2/mod_headers.so |
| 22 LoadModule ssl_module libexec/apache2/mod_ssl.so | 16 LoadModule ssl_module libexec/apache2/mod_ssl.so |
| 23 LoadModule mime_module libexec/apache2/mod_mime.so | 17 LoadModule mime_module libexec/apache2/mod_mime.so |
| 24 LoadModule asis_module libexec/apache2/mod_asis.so | 18 LoadModule asis_module libexec/apache2/mod_asis.so |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 Order allow,deny | 141 Order allow,deny |
| 148 Deny from all | 142 Deny from all |
| 149 Satisfy All | 143 Satisfy All |
| 150 </Files> | 144 </Files> |
| 151 | 145 |
| 152 <Directory ~ ".*\.\.namedfork"> | 146 <Directory ~ ".*\.\.namedfork"> |
| 153 Order allow,deny | 147 Order allow,deny |
| 154 Deny from all | 148 Deny from all |
| 155 Satisfy All | 149 Satisfy All |
| 156 </Directory> | 150 </Directory> |
| OLD | NEW |