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

Side by Side Diff: third_party/WebKit/LayoutTests/http/conf/redhat-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 "/etc/httpd"
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 log_config_module modules/mod_log_config.so
24 LoadModule headers_module modules/mod_headers.so
25 LoadModule mime_module modules/mod_mime.so
26 LoadModule negotiation_module modules/mod_negotiation.so
27 LoadModule actions_module modules/mod_actions.so
28 LoadModule alias_module modules/mod_alias.so
29 LoadModule rewrite_module modules/mod_rewrite.so
30 LoadModule cgi_module modules/mod_cgi.so
31 LoadModule ssl_module modules/mod_ssl.so
32 LoadModule unixd_module modules/mod_unixd.so
33 LoadModule php5_module modules/libphp5.so
34
35 LoadModule asis_module modules/mod_asis.so
36
37 User apache
38 Group apache
39
40 ServerAdmin root@localhost
41 ServerName 127.0.0.1
42
43 UseCanonicalName On
44
45 <Directory />
46 Options Indexes FollowSymLinks MultiViews ExecCGI Includes
47 AllowOverride All
48 Require all granted
49 </Directory>
50
51 AccessFileName .htaccess
52
53 <Files ~ "^\.([Hh][Tt]|[Dd][Ss]_[Ss])">
54 Require all denied
55 </Files>
56
57 TypesConfig /etc/mime.types
58 HostnameLookups Off
59
60 LogLevel warn
61 LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combine d
62 LogFormat "%h %l %u %t \"%r\" %>s %b" common
63 LogFormat "%{Referer}i -> %U" referer
64 LogFormat "%{User-agent}i" agent
65
66 ServerSignature On
67
68 AddLanguage ca .ca
69 AddLanguage cs .cz .cs
70 AddLanguage da .dk
71 AddLanguage de .de
72 AddLanguage el .el
73 AddLanguage en .en
74 AddLanguage eo .eo
75 AddLanguage es .es
76 AddLanguage et .et
77 AddLanguage fr .fr
78 AddLanguage he .he
79 AddLanguage hr .hr
80 AddLanguage it .it
81 AddLanguage ja .ja
82 AddLanguage ko .ko
83 AddLanguage ltz .ltz
84 AddLanguage nl .nl
85 AddLanguage nn .nn
86 AddLanguage no .no
87 AddLanguage pl .po
88 AddLanguage pt .pt
89 AddLanguage pt-BR .pt-br
90 AddLanguage ru .ru
91 AddLanguage sv .sv
92 AddLanguage zh-CN .zh-cn
93 AddLanguage zh-TW .zh-tw
94 AddCharset Big5 .Big5 .big5
95 AddCharset WINDOWS-1251 .cp-1251
96 AddCharset CP866 .cp866
97 AddCharset ISO-8859-5 .iso-ru
98 AddCharset KOI8-R .koi8-r
99 AddCharset UCS-2 .ucs2
100 AddCharset UCS-4 .ucs4
101 AddCharset UTF-8 .utf8
102
103 <IfModule mod_negotiation.c>
104 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
105 </IfModule>
106
107 AddEncoding x-compress .Z
108 AddEncoding x-gzip .gz .tgz
109
110 AddType application/x-x509-ca-cert .crt
111 AddType application/x-pkcs7-crl .crl
112
113 AddHandler cgi-script .cgi .pl
114
115 AddType text/html .shtml
116 AddOutputFilter INCLUDES .shtml
117
118 AddHandler send-as-is asis
119
120 <IfModule mod_php5.c>
121 AddType application/x-httpd-php .php
122 AddType application/x-httpd-php .bat
123 AddType application/x-httpd-php-source .phps
124
125 <IfModule mod_dir.c>
126 DirectoryIndex index.html index.php
127 </IfModule>
128
129 php_flag log_errors on
130 php_flag short_open_tag on
131 </IfModule>
132
133 <IfModule mod_rewrite.c>
134 RewriteEngine On
135 RewriteCond %{REQUEST_METHOD} ^TRACE
136 RewriteRule .* - [F]
137 </IfModule>
138
139 <VirtualHost *:8443>
140 ServerName 127.0.0.1
141 SSLEngine On
142 </VirtualHost>
143
144 #
145 # Apple-specific filesystem protection.
146 #
147 <Files "rsrc">
148 Require all denied
149 </Files>
150
151 <Directory ~ ".*\.\.namedfork">
152 Require all denied
153 </Directory>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698