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

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

Powered by Google App Engine
This is Rietveld 408576698