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

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

Powered by Google App Engine
This is Rietveld 408576698