Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / http / conf / apache2-httpd-2.4.conf
blob9e293d07eaab2c93f86b6589a6ff622b022c3a73
1 Mutex file:/tmp/WebKit
2 PidFile "/tmp/WebKit/httpd.pid"
3 ScoreBoardFile "/tmp/WebKit/httpd.scoreboard"
5 Timeout 300
6 KeepAlive On
7 MaxKeepAliveRequests 100
8 KeepAliveTimeout 15
10 MaxRequestWorkers 150
11 MaxConnectionsPerChild 100000
13 LoadModule unixd_module libexec/apache2/mod_unixd.so
14 LoadModule access_compat_module libexec/apache2/mod_access_compat.so
15 LoadModule authz_core_module libexec/apache2/mod_authz_core.so
16 LoadModule authz_host_module libexec/apache2/mod_authz_host.so
17 LoadModule include_module libexec/apache2/mod_include.so
18 LoadModule log_config_module libexec/apache2/mod_log_config.so
19 LoadModule headers_module libexec/apache2/mod_headers.so
20 LoadModule ssl_module libexec/apache2/mod_ssl.so
21 LoadModule mime_module libexec/apache2/mod_mime.so
22 LoadModule asis_module libexec/apache2/mod_asis.so
23 LoadModule cgi_module libexec/apache2/mod_cgi.so
24 LoadModule negotiation_module libexec/apache2/mod_negotiation.so
25 LoadModule imagemap_module libexec/apache2/mod_imagemap.so
26 LoadModule actions_module libexec/apache2/mod_actions.so
27 LoadModule alias_module libexec/apache2/mod_alias.so
28 LoadModule rewrite_module libexec/apache2/mod_rewrite.so
29 LoadModule php5_module libexec/apache2/libphp5.so
30 LoadModule autoindex_module libexec/apache2/mod_autoindex.so
32 ServerName 127.0.0.1
34 <Directory />
35     Options Indexes FollowSymLinks MultiViews ExecCGI Includes
36     AllowOverride All
37     Order allow,deny
38     Allow from all
39 </Directory>
41 AccessFileName .htaccess
43 <Files ~ "^\.([Hh][Tt]|[Dd][Ss]_[Ss])">
44     Order allow,deny
45     Deny from all
46     Satisfy All
47 </Files>
49 UseCanonicalName On
50 HostnameLookups Off
52 LogLevel warn
54 ErrorLog "/tmp/WebKit/error_log"
56 LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
57 LogFormat "%h %l %u %t \"%r\" %>s %b" common
58 LogFormat "%{Referer}i -> %U" referer
59 LogFormat "%{User-agent}i" agent
61 ServerSignature On
63 <IfModule mod_alias.c>
64 </IfModule>
66 <IfModule mod_mime.c>
67     AddLanguage da .dk
68     AddLanguage nl .nl
69     AddLanguage en .en
70     AddLanguage et .ee
71     AddLanguage fr .fr
72     AddLanguage de .de
73     AddLanguage el .el
74     AddLanguage he .he
75     AddCharset ISO-8859-8 .iso8859-8
76     AddLanguage it .it
77     AddLanguage ja .ja
78     AddCharset ISO-2022-JP .jis
79     AddLanguage kr .kr
80     AddCharset ISO-2022-KR .iso-kr
81     AddLanguage nn .nn
82     AddLanguage no .no
83     AddLanguage pl .po
84     AddCharset ISO-8859-2 .iso-pl
85     AddLanguage pt .pt
86     AddLanguage pt-br .pt-br
87     AddLanguage ltz .lu
88     AddLanguage ca .ca
89     AddLanguage es .es
90     AddLanguage sv .sv
91     AddLanguage cs .cz .cs
92     AddLanguage ru .ru
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
103     <IfModule mod_negotiation.c>
104         LanguagePriority en da nl et fr de el it ja kr no pl pt pt-br ru ltz ca es sv tw
105     </IfModule>
107     AddType application/x-tar .tgz
109     AddEncoding x-compress .Z
110     AddEncoding x-gzip .gz .tgz
112     AddHandler cgi-script .cgi .pl
114     AddType text/html .shtml
115     AddHandler server-parsed .shtml
117     AddHandler send-as-is asis
118 </IfModule>
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
125     <IfModule mod_dir.c>
126         DirectoryIndex index.html index.php
127     </IfModule>
129     php_flag log_errors on
130     php_flag short_open_tag on
131 </IfModule>
133 <IfModule mod_rewrite.c>
134     RewriteEngine On
135     RewriteCond %{REQUEST_METHOD} ^TRACE
136     RewriteRule .* - [F]
137 </IfModule>
139 <VirtualHost *:8443>
140     ServerName 127.0.0.1
141     SSLEngine On
142 </VirtualHost>
145 # Apple-specific filesystem protection.
147 <Files "rsrc">
148     Order allow,deny
149     Deny from all
150     Satisfy All
151 </Files>
153 <Directory  ~ ".*\.\.namedfork">
154     Order allow,deny
155     Deny from all
156     Satisfy All
157 </Directory>