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

Side by Side Diff: third_party/WebKit/LayoutTests/http/conf/cygwin-httpd.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 ServerType standalone 2 ServerType standalone
2 3
3 ServerRoot "/usr" 4 ServerRoot "/usr"
4 LockFile "/tmp/WebKit/httpd.lock" 5 LockFile "/tmp/WebKit/httpd.lock"
5 PidFile "/tmp/WebKit/httpd.pid" 6 PidFile "/tmp/WebKit/httpd.pid"
6 ScoreBoardFile "/tmp/WebKit/httpd.scoreboard" 7 ScoreBoardFile "/tmp/WebKit/httpd.scoreboard"
7 8
8 ResourceConfig /dev/null 9 ResourceConfig /dev/null
9 AccessConfig /dev/null 10 AccessConfig /dev/null
10 11
11 Timeout 300 12 Timeout 300
12 KeepAlive On 13 KeepAlive On
13 MaxKeepAliveRequests 100 14 # Setting this value too low may change header size sometimes making flakey test s.
14 KeepAliveTimeout 15 15 MaxKeepAliveRequests 0
16 KeepAliveTimeout 9999
15 17
16 MinSpareServers 1 18 MinSpareServers 1
17 MaxSpareServers 5 19 MaxSpareServers 5
18 StartServers 1 20 StartServers 1
19 MaxClients 150 21 MaxClients 150
20 MaxRequestsPerChild 100000 22 MaxRequestsPerChild 100000
21 23
22 LoadModule config_log_module lib/apache/mod_log_config.dll 24 LoadModule config_log_module lib/apache/mod_log_config.dll
23 LoadModule mime_module lib/apache/mod_mime.dll 25 LoadModule mime_module lib/apache/mod_mime.dll
24 LoadModule negotiation_module lib/apache/mod_negotiation.dll 26 LoadModule negotiation_module lib/apache/mod_negotiation.dll
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 Order allow,deny 168 Order allow,deny
167 Deny from all 169 Deny from all
168 Satisfy All 170 Satisfy All
169 </Files> 171 </Files>
170 172
171 <Directory ~ ".*\.\.namedfork"> 173 <Directory ~ ".*\.\.namedfork">
172 Order allow,deny 174 Order allow,deny
173 Deny from all 175 Deny from all
174 Satisfy All 176 Satisfy All
175 </Directory> 177 </Directory>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698