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

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

Powered by Google App Engine
This is Rietveld 408576698