OLD | NEW |
| 1 ServerTokens Prod |
1 LockFile "/tmp/WebKit/httpd.lock" | 2 LockFile "/tmp/WebKit/httpd.lock" |
2 ScoreBoardFile "/tmp/WebKit/httpd.scoreboard" | 3 ScoreBoardFile "/tmp/WebKit/httpd.scoreboard" |
3 | 4 |
4 Timeout 300 | 5 Timeout 300 |
5 KeepAlive On | 6 KeepAlive On |
6 MaxKeepAliveRequests 100 | 7 # Setting this value too low may change header size sometimes making flakey test
s. |
7 KeepAliveTimeout 15 | 8 MaxKeepAliveRequests 0 |
| 9 KeepAliveTimeout 9999 |
8 | 10 |
9 MaxClients 150 | 11 MaxClients 150 |
10 MaxRequestsPerChild 100000 | 12 MaxRequestsPerChild 100000 |
11 | 13 |
12 LoadModule authz_host_module libexec/apache2/mod_authz_host.so | 14 LoadModule authz_host_module libexec/apache2/mod_authz_host.so |
13 LoadModule include_module libexec/apache2/mod_include.so | 15 LoadModule include_module libexec/apache2/mod_include.so |
14 LoadModule log_config_module libexec/apache2/mod_log_config.so | 16 LoadModule log_config_module libexec/apache2/mod_log_config.so |
15 LoadModule headers_module libexec/apache2/mod_headers.so | 17 LoadModule headers_module libexec/apache2/mod_headers.so |
16 LoadModule ssl_module libexec/apache2/mod_ssl.so | 18 LoadModule ssl_module libexec/apache2/mod_ssl.so |
17 LoadModule mime_module libexec/apache2/mod_mime.so | 19 LoadModule mime_module libexec/apache2/mod_mime.so |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
142 Order allow,deny | 144 Order allow,deny |
143 Deny from all | 145 Deny from all |
144 Satisfy All | 146 Satisfy All |
145 </Files> | 147 </Files> |
146 | 148 |
147 <Directory ~ ".*\.\.namedfork"> | 149 <Directory ~ ".*\.\.namedfork"> |
148 Order allow,deny | 150 Order allow,deny |
149 Deny from all | 151 Deny from all |
150 Satisfy All | 152 Satisfy All |
151 </Directory> | 153 </Directory> |
OLD | NEW |