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

Side by Side Diff: third_party/WebKit/LayoutTests/http/conf/debian-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 ServerRoot "/usr/lib/apache2"
3
4 PidFile "/tmp/WebKit/httpd.pid"
5 ScoreBoardFile "/tmp/WebKit/httpd.scoreboard"
6
7 Timeout 300
8 KeepAlive On
9 # Setting this value too low may change header size sometimes making flakey test s.
10 MaxKeepAliveRequests 0
11 KeepAliveTimeout 9999
12
13 MinSpareServers 1
14 MaxSpareServers 5
15 StartServers 1
16 MaxClients 150
17 MaxRequestsPerChild 100000
18
19 LoadModule mpm_prefork_module modules/mod_mpm_prefork.so
20 LoadModule authz_core_module modules/mod_authz_core.so
21 LoadModule authz_host_module modules/mod_authz_host.so
22 LoadModule include_module modules/mod_include.so
23 LoadModule headers_module modules/mod_headers.so
24 LoadModule mime_module modules/mod_mime.so
25 LoadModule negotiation_module modules/mod_negotiation.so
26 LoadModule actions_module modules/mod_actions.so
27 LoadModule alias_module modules/mod_alias.so
28 LoadModule rewrite_module modules/mod_rewrite.so
29 LoadModule cgi_module modules/mod_cgi.so
30 LoadModule ssl_module modules/mod_ssl.so
31 LoadModule php5_module modules/libphp5.so
32 LoadModule asis_module modules/mod_asis.so
33
34 ServerName 127.0.0.1
35
36 <Directory />
37 Options Indexes FollowSymLinks MultiViews ExecCGI Includes
38 AllowOverride All
39 Require all granted
40 </Directory>
41
42 AccessFileName .htaccess
43
44 <Files ~ "^\.([Hh][Tt]|[Dd][Ss]_[Ss])">
45 Require all denied
46 </Files>
47
48 UseCanonicalName On
49 HostnameLookups Off
50
51 TypesConfig /etc/mime.types
52
53 LogLevel warn
54 LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combine d
55 LogFormat "%h %l %u %t \"%r\" %>s %b" common
56 LogFormat "%{Referer}i -> %U" referer
57 LogFormat "%{User-agent}i" agent
58 ErrorLog /tmp/WebKit/error_log
59
60 ServerSignature On
61
62 AddLanguage ca .ca
63 AddLanguage cs .cz .cs
64 AddLanguage da .dk
65 AddLanguage de .de
66 AddLanguage el .el
67 AddLanguage en .en
68 AddLanguage eo .eo
69 AddLanguage es .es
70 AddLanguage et .et
71 AddLanguage fr .fr
72 AddLanguage he .he
73 AddLanguage hr .hr
74 AddLanguage it .it
75 AddLanguage ja .ja
76 AddLanguage ko .ko
77 AddLanguage ltz .ltz
78 AddLanguage nl .nl
79 AddLanguage nn .nn
80 AddLanguage no .no
81 AddLanguage pl .po
82 AddLanguage pt .pt
83 AddLanguage pt-BR .pt-br
84 AddLanguage ru .ru
85 AddLanguage sv .sv
86 AddLanguage zh-CN .zh-cn
87 AddLanguage zh-TW .zh-tw
88 AddCharset Big5 .Big5 .big5
89 AddCharset WINDOWS-1251 .cp-1251
90 AddCharset CP866 .cp866
91 AddCharset ISO-8859-5 .iso-ru
92 AddCharset KOI8-R .koi8-r
93 AddCharset UCS-2 .ucs2
94 AddCharset UCS-4 .ucs4
95 AddCharset UTF-8 .utf8
96
97 <IfModule mod_negotiation.c>
98 LanguagePriority en ca cs da de el eo es et fr he hr it ja ko ltz nl nn no p l pt pt-BR ru sv zh-CN zh-TW
99 </IfModule>
100
101 AddType application/x-tar .tgz
102
103 AddEncoding x-compress .Z
104 AddEncoding x-gzip .gz .tgz
105
106 AddType application/x-x509-ca-cert .crt
107 AddType application/x-pkcs7-crl .crl
108
109 AddHandler cgi-script .cgi .pl
110
111 AddType text/html .shtml
112 AddOutputFilter INCLUDES .shtml
113
114 AddHandler send-as-is asis
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 Require all denied
145 </Files>
146
147 <Directory ~ ".*\.\.namedfork">
148 Require all denied
149 </Directory>
OLDNEW
« no previous file with comments | « third_party/WebKit/LayoutTests/http/conf/debian-httpd-2.2.conf ('k') | third_party/WebKit/LayoutTests/http/conf/mime.types » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698