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

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

Powered by Google App Engine
This is Rietveld 408576698