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

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

Powered by Google App Engine
This is Rietveld 408576698