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

Side by Side Diff: third_party/WebKit/LayoutTests/http/conf/arch-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 OS 1 ServerTokens Prod
2 ServerRoot "/usr/lib/httpd" 2 ServerRoot "/usr/lib/httpd"
3 3
4 PidFile "/tmp/WebKit/httpd.pid" 4 PidFile "/tmp/WebKit/httpd.pid"
5 ScoreBoardFile "/tmp/WebKit/httpd.scoreboard" 5 ScoreBoardFile "/tmp/WebKit/httpd.scoreboard"
6 6
7 Timeout 300 7 Timeout 300
8 KeepAlive On 8 KeepAlive On
9 MaxKeepAliveRequests 100 9 # Setting this value too low may change header size sometimes making flakey test s.
10 KeepAliveTimeout 15 10 MaxKeepAliveRequests 0
11 KeepAliveTimeout 9999
11 12
12 MinSpareServers 1 13 MinSpareServers 1
13 MaxSpareServers 5 14 MaxSpareServers 5
14 StartServers 1 15 StartServers 1
15 MaxClients 150 16 MaxClients 150
16 MaxRequestsPerChild 100000 17 MaxRequestsPerChild 100000
17 18
18 LoadModule mpm_prefork_module modules/mod_mpm_prefork.so 19 LoadModule mpm_prefork_module modules/mod_mpm_prefork.so
19 LoadModule authz_core_module modules/mod_authz_core.so 20 LoadModule authz_core_module modules/mod_authz_core.so
20 LoadModule authz_host_module modules/mod_authz_host.so 21 LoadModule authz_host_module modules/mod_authz_host.so
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 # 142 #
142 # Apple-specific filesystem protection. 143 # Apple-specific filesystem protection.
143 # 144 #
144 <Files "rsrc"> 145 <Files "rsrc">
145 Require all denied 146 Require all denied
146 </Files> 147 </Files>
147 148
148 <Directory ~ ".*\.\.namedfork"> 149 <Directory ~ ".*\.\.namedfork">
149 Require all denied 150 Require all denied
150 </Directory> 151 </Directory>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698