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

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

Issue 2454323004: Make layout test harness extensible with custom layout tests directory (Closed)
Patch Set: Undo non test harness changes Created 4 years, 1 month 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
(Empty)
1 ServerTokens Prod
2 Timeout 300
3 KeepAlive On
4 # Setting this value too low may change header size sometimes making flakey test s.
5 MaxKeepAliveRequests 0
6 KeepAliveTimeout 9999
7
8 LoadModule alias_module modules/mod_alias.so
9 LoadModule asis_module modules/mod_asis.so
10 LoadModule authz_host_module modules/mod_authz_host.so
11 LoadModule autoindex_module modules/mod_autoindex.so
12 LoadModule cgi_module modules/mod_cgi.so
13 LoadModule headers_module modules/mod_headers.so
14 LoadModule log_config_module modules/mod_log_config.so
15 LoadModule mime_module modules/mod_mime.so
16 LoadModule php5_module modules/php5apache2_2.dll
17 LoadModule rewrite_module modules/mod_rewrite.so
18 LoadModule ssl_module modules/mod_ssl.so
19
20 ServerName 127.0.0.1
21
22 ScriptInterpreterSource Registry-Strict
23
24 <Directory />
25 Options Indexes FollowSymLinks MultiViews ExecCGI Includes
26 AllowOverride All
27 Order allow,deny
28 Allow from all
29 </Directory>
30
31 AccessFileName .htaccess
32
33 <Files ~ "^\.([Hh][Tt]|[Dd][Ss]_[Ss])">
34 Order allow,deny
35 Deny from all
36 Satisfy All
37 </Files>
38
39 UseCanonicalName On
40 DefaultType text/plain
41 HostnameLookups Off
42
43 LogLevel warn
44 LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combine d
45 LogFormat "%h %l %u %t \"%r\" %>s %b" common
46 LogFormat "%{Referer}i -> %U" referer
47 LogFormat "%{User-agent}i" agent
48
49 ServerSignature On
50
51 <IfModule mod_alias.c>
52 </IfModule>
53
54 <IfModule mod_mime.c>
55 AddLanguage da .dk
56 AddLanguage nl .nl
57 AddLanguage en .en
58 AddLanguage et .ee
59 AddLanguage fr .fr
60 AddLanguage de .de
61 AddLanguage el .el
62 AddLanguage he .he
63 AddCharset ISO-8859-8 .iso8859-8
64 AddLanguage it .it
65 AddLanguage ja .ja
66 AddCharset ISO-2022-JP .jis
67 AddLanguage kr .kr
68 AddCharset ISO-2022-KR .iso-kr
69 AddLanguage nn .nn
70 AddLanguage no .no
71 AddLanguage pl .po
72 AddCharset ISO-8859-2 .iso-pl
73 AddLanguage pt .pt
74 AddLanguage pt-br .pt-br
75 AddLanguage ltz .lu
76 AddLanguage ca .ca
77 AddLanguage es .es
78 AddLanguage sv .sv
79 AddLanguage cs .cz .cs
80 AddLanguage ru .ru
81 AddLanguage zh-TW .zh-tw
82 AddCharset Big5 .Big5 .big5
83 AddCharset WINDOWS-1251 .cp-1251
84 AddCharset CP866 .cp866
85 AddCharset ISO-8859-5 .iso-ru
86 AddCharset KOI8-R .koi8-r
87 AddCharset UCS-2 .ucs2
88 AddCharset UCS-4 .ucs4
89 AddCharset UTF-8 .utf8
90
91 <IfModule mod_negotiation.c>
92 LanguagePriority en da nl et fr de el it ja kr no pl pt pt-br ru ltz ca es sv tw
93 </IfModule>
94
95 AddType application/x-tar .tgz
96
97 AddEncoding x-compress .Z
98 AddEncoding x-gzip .gz .tgz
99
100 AddHandler cgi-script .cgi .pl
101
102 AddType text/html .shtml
103 AddHandler server-parsed .shtml
104
105 AddHandler send-as-is asis
106 </IfModule>
107
108 <IfModule mod_php5.c>
109 AddType application/x-httpd-php .php
110 AddType application/x-httpd-php .bat
111 AddType application/x-httpd-php-source .phps
112
113 <IfModule mod_dir.c>
114 DirectoryIndex index.html index.php
115 </IfModule>
116
117 php_flag log_errors on
118 php_flag short_open_tag on
119 </IfModule>
120
121 <IfModule mod_rewrite.c>
122 RewriteEngine On
123 RewriteCond %{REQUEST_METHOD} ^TRACE
124 RewriteRule .* - [F]
125 </IfModule>
126
127 <VirtualHost *:8443>
128 ServerName 127.0.0.1
129 SSLEngine On
130 </VirtualHost>
131
132 #
133 # Apple-specific filesystem protection.
134 #
135 <Files "rsrc">
136 Order allow,deny
137 Deny from all
138 Satisfy All
139 </Files>
140
141 <Directory ~ ".*\.\.namedfork">
142 Order allow,deny
143 Deny from all
144 Satisfy All
145 </Directory>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698