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

Side by Side Diff: third_party/WebKit/LayoutTests/http/conf/arch-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/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 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 php7_module modules/libphp7.so
32 LoadModule asis_module modules/mod_asis.so
33 LoadModule unixd_module modules/mod_unixd.so
34 LoadModule log_config_module modules/mod_log_config.so
35
36 ServerName 127.0.0.1
37
38 <Directory />
39 Options Indexes FollowSymLinks MultiViews ExecCGI Includes
40 AllowOverride All
41 Require all granted
42 </Directory>
43
44 AccessFileName .htaccess
45
46 <Files ~ "^\.([Hh][Tt]|[Dd][Ss]_[Ss])">
47 Require all denied
48 </Files>
49
50 UseCanonicalName On
51 HostnameLookups Off
52
53 TypesConfig /etc/mime.types
54
55 LogLevel warn
56 LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combine d
57 LogFormat "%h %l %u %t \"%r\" %>s %b" common
58 LogFormat "%{Referer}i -> %U" referer
59 LogFormat "%{User-agent}i" agent
60 ErrorLog /tmp/WebKit/error_log
61
62 ServerSignature On
63
64 AddLanguage ca .ca
65 AddLanguage cs .cz .cs
66 AddLanguage da .dk
67 AddLanguage de .de
68 AddLanguage el .el
69 AddLanguage en .en
70 AddLanguage eo .eo
71 AddLanguage es .es
72 AddLanguage et .et
73 AddLanguage fr .fr
74 AddLanguage he .he
75 AddLanguage hr .hr
76 AddLanguage it .it
77 AddLanguage ja .ja
78 AddLanguage ko .ko
79 AddLanguage ltz .ltz
80 AddLanguage nl .nl
81 AddLanguage nn .nn
82 AddLanguage no .no
83 AddLanguage pl .po
84 AddLanguage pt .pt
85 AddLanguage pt-BR .pt-br
86 AddLanguage ru .ru
87 AddLanguage sv .sv
88 AddLanguage zh-CN .zh-cn
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 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
101 </IfModule>
102
103 AddType application/x-tar .tgz
104
105 AddEncoding x-compress .Z
106 AddEncoding x-gzip .gz .tgz
107
108 AddType application/x-x509-ca-cert .crt
109 AddType application/x-pkcs7-crl .crl
110
111 AddHandler cgi-script .cgi .pl
112
113 AddType text/html .shtml
114 AddOutputFilter INCLUDES .shtml
115
116 AddHandler send-as-is asis
117
118 <IfModule mod_php7.c>
119 AddType application/x-httpd-php .php
120 AddType application/x-httpd-php .bat
121 AddType application/x-httpd-php-source .phps
122
123 <IfModule mod_dir.c>
124 DirectoryIndex index.html index.php
125 </IfModule>
126
127 php_flag log_errors on
128 php_flag short_open_tag on
129 </IfModule>
130
131 <IfModule mod_rewrite.c>
132 RewriteEngine On
133 RewriteCond %{REQUEST_METHOD} ^TRACE
134 RewriteRule .* - [F]
135 </IfModule>
136
137 <VirtualHost *:8443>
138 ServerName 127.0.0.1
139 SSLEngine On
140 </VirtualHost>
141
142 #
143 # Apple-specific filesystem protection.
144 #
145 <Files "rsrc">
146 Require all denied
147 </Files>
148
149 <Directory ~ ".*\.\.namedfork">
150 Require all denied
151 </Directory>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698