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

Side by Side Diff: LayoutTests/http/conf/win-httpd.conf

Issue 327423008: Change port to use apache by default on win7, update test expectations. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: merge forward to r177025 Created 6 years, 6 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 Timeout 300 1 Timeout 300
2 KeepAlive On 2 KeepAlive On
3 MaxKeepAliveRequests 100 3 MaxKeepAliveRequests 100
4 KeepAliveTimeout 15 4 KeepAliveTimeout 15
5 5
6 LoadModule alias_module modules/mod_alias.so
7 LoadModule asis_module modules/mod_asis.so
6 LoadModule authz_host_module modules/mod_authz_host.so 8 LoadModule authz_host_module modules/mod_authz_host.so
7 LoadModule include_module modules/mod_include.so 9 LoadModule autoindex_module modules/mod_autoindex.so
10 LoadModule cgi_module modules/mod_cgi.so
11 LoadModule headers_module modules/mod_headers.so
8 LoadModule log_config_module modules/mod_log_config.so 12 LoadModule log_config_module modules/mod_log_config.so
9 LoadModule headers_module modules/mod_headers.so 13 LoadModule mime_module modules/mod_mime.so
14 LoadModule php5_module modules/php5apache2_2.dll
15 LoadModule rewrite_module modules/mod_rewrite.so
10 LoadModule ssl_module modules/mod_ssl.so 16 LoadModule ssl_module modules/mod_ssl.so
11 LoadModule mime_module modules/mod_mime.so
12 LoadModule asis_module modules/mod_asis.so
13 LoadModule cgi_module modules/mod_cgi.so
14 LoadModule negotiation_module modules/mod_negotiation.so
15 LoadModule imagemap_module modules/mod_imagemap.so
16 LoadModule actions_module modules/mod_actions.so
17 LoadModule alias_module modules/mod_alias.so
18 LoadModule rewrite_module modules/mod_rewrite.so
19 LoadModule php5_module modules/php5apache2_2.dll
20 LoadModule autoindex_module modules/mod_autoindex.so
21 17
22 ServerName 127.0.0.1 18 ServerName 127.0.0.1
23 19
24 ScriptInterpreterSource Registry-Strict 20 ScriptInterpreterSource Registry-Strict
25 21
26 <Directory /> 22 <Directory />
27 Options Indexes FollowSymLinks MultiViews ExecCGI Includes 23 Options Indexes FollowSymLinks MultiViews ExecCGI Includes
28 AllowOverride All 24 AllowOverride All
29 Order allow,deny 25 Order allow,deny
30 Allow from all 26 Allow from all
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 Order allow,deny 134 Order allow,deny
139 Deny from all 135 Deny from all
140 Satisfy All 136 Satisfy All
141 </Files> 137 </Files>
142 138
143 <Directory ~ ".*\.\.namedfork"> 139 <Directory ~ ".*\.\.namedfork">
144 Order allow,deny 140 Order allow,deny
145 Deny from all 141 Deny from all
146 Satisfy All 142 Satisfy All
147 </Directory> 143 </Directory>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698