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

Side by Side Diff: third_party/WebKit/LayoutTests/http/conf/redhat-httpd-2.2.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 OS 1 ServerTokens Prod
2 ServerRoot "/etc/httpd" 2 ServerRoot "/etc/httpd"
3 3
4 LockFile "/tmp/WebKit/httpd.lock" 4 LockFile "/tmp/WebKit/httpd.lock"
5 PidFile "/tmp/WebKit/httpd.pid" 5 PidFile "/tmp/WebKit/httpd.pid"
6 ScoreBoardFile "/tmp/WebKit/httpd.scoreboard" 6 ScoreBoardFile "/tmp/WebKit/httpd.scoreboard"
7 7
8 Timeout 300 8 Timeout 300
9 KeepAlive On 9 KeepAlive On
10 MaxKeepAliveRequests 100 10 # Setting this value too low may change header size sometimes making flakey test s.
11 KeepAliveTimeout 15 11 MaxKeepAliveRequests 0
12 KeepAliveTimeout 9999
12 13
13 MinSpareServers 1 14 MinSpareServers 1
14 MaxSpareServers 5 15 MaxSpareServers 5
15 StartServers 1 16 StartServers 1
16 MaxClients 150 17 MaxClients 150
17 MaxRequestsPerChild 100000 18 MaxRequestsPerChild 100000
18 19
19 LoadModule authz_host_module modules/mod_authz_host.so 20 LoadModule authz_host_module modules/mod_authz_host.so
20 LoadModule include_module modules/mod_include.so 21 LoadModule include_module modules/mod_include.so
21 LoadModule log_config_module modules/mod_log_config.so 22 LoadModule log_config_module modules/mod_log_config.so
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 Order allow,deny 151 Order allow,deny
151 Deny from all 152 Deny from all
152 Satisfy All 153 Satisfy All
153 </Files> 154 </Files>
154 155
155 <Directory ~ ".*\.\.namedfork"> 156 <Directory ~ ".*\.\.namedfork">
156 Order allow,deny 157 Order allow,deny
157 Deny from all 158 Deny from all
158 Satisfy All 159 Satisfy All
159 </Directory> 160 </Directory>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698