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 MaxKeepAliveRequests 999 |
Adam Rice
2016/09/01 08:57:28
I'm not sure this solves the problem of Apache sen
allada
2016/09/07 06:01:12
A quick search found apx 4.2k (some may have multi
Adam Rice
2016/09/07 06:35:52
MaxKeepAliveRequests 0
seems to work. "0" means u
| |
7 KeepAliveTimeout 15 | 8 KeepAliveTimeout 999 |
8 | 9 |
9 MaxClients 150 | 10 MaxClients 150 |
10 MaxRequestsPerChild 100000 | 11 MaxRequestsPerChild 100000 |
11 | 12 |
12 LoadModule authz_host_module libexec/apache2/mod_authz_host.so | 13 LoadModule authz_host_module libexec/apache2/mod_authz_host.so |
13 LoadModule include_module libexec/apache2/mod_include.so | 14 LoadModule include_module libexec/apache2/mod_include.so |
14 LoadModule log_config_module libexec/apache2/mod_log_config.so | 15 LoadModule log_config_module libexec/apache2/mod_log_config.so |
15 LoadModule headers_module libexec/apache2/mod_headers.so | 16 LoadModule headers_module libexec/apache2/mod_headers.so |
16 LoadModule ssl_module libexec/apache2/mod_ssl.so | 17 LoadModule ssl_module libexec/apache2/mod_ssl.so |
17 LoadModule mime_module libexec/apache2/mod_mime.so | 18 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 | 143 Order allow,deny |
143 Deny from all | 144 Deny from all |
144 Satisfy All | 145 Satisfy All |
145 </Files> | 146 </Files> |
146 | 147 |
147 <Directory ~ ".*\.\.namedfork"> | 148 <Directory ~ ".*\.\.namedfork"> |
148 Order allow,deny | 149 Order allow,deny |
149 Deny from all | 150 Deny from all |
150 Satisfy All | 151 Satisfy All |
151 </Directory> | 152 </Directory> |
OLD | NEW |