Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Side by Side Diff: third_party/WebKit/LayoutTests/http/conf/apache2-httpd-2.4.conf

Issue 2167853003: [DevTools] Always report encodedDataLength in Network.ResponseReceived. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: changes Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 ServerTokens Prod
1 Mutex file:/tmp/WebKit 2 Mutex file:/tmp/WebKit
2 PidFile "/tmp/WebKit/httpd.pid" 3 PidFile "/tmp/WebKit/httpd.pid"
3 ScoreBoardFile "/tmp/WebKit/httpd.scoreboard" 4 ScoreBoardFile "/tmp/WebKit/httpd.scoreboard"
4 5
5 Timeout 300 6 Timeout 300
6 KeepAlive On 7 KeepAlive On
7 MaxKeepAliveRequests 100 8 # Setting this value too low may change header size sometimes making flakey test s.
8 KeepAliveTimeout 15 9 MaxKeepAliveRequests 0
10 KeepAliveTimeout 9999
9 11
10 MaxRequestWorkers 150 12 MaxRequestWorkers 150
11 MaxConnectionsPerChild 100000 13 MaxConnectionsPerChild 100000
12 14
13 LoadModule unixd_module libexec/apache2/mod_unixd.so 15 LoadModule unixd_module libexec/apache2/mod_unixd.so
14 LoadModule access_compat_module libexec/apache2/mod_access_compat.so 16 LoadModule access_compat_module libexec/apache2/mod_access_compat.so
15 LoadModule authz_core_module libexec/apache2/mod_authz_core.so 17 LoadModule authz_core_module libexec/apache2/mod_authz_core.so
16 LoadModule authz_host_module libexec/apache2/mod_authz_host.so 18 LoadModule authz_host_module libexec/apache2/mod_authz_host.so
17 LoadModule include_module libexec/apache2/mod_include.so 19 LoadModule include_module libexec/apache2/mod_include.so
18 LoadModule log_config_module libexec/apache2/mod_log_config.so 20 LoadModule log_config_module libexec/apache2/mod_log_config.so
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 Order allow,deny 150 Order allow,deny
149 Deny from all 151 Deny from all
150 Satisfy All 152 Satisfy All
151 </Files> 153 </Files>
152 154
153 <Directory ~ ".*\.\.namedfork"> 155 <Directory ~ ".*\.\.namedfork">
154 Order allow,deny 156 Order allow,deny
155 Deny from all 157 Deny from all
156 Satisfy All 158 Satisfy All
157 </Directory> 159 </Directory>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698