Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / http / conf / apache2-httpd-2.2.conf
blob9a95992d10762b6957f69b27891ba3ddeebcdf72
1 LockFile "/tmp/WebKit/httpd.lock"
2 ScoreBoardFile "/tmp/WebKit/httpd.scoreboard"
4 Timeout 300
5 KeepAlive On
6 MaxKeepAliveRequests 100
7 KeepAliveTimeout 15
9 MaxClients 150
10 MaxRequestsPerChild 100000
12 LoadModule authz_host_module libexec/apache2/mod_authz_host.so
13 LoadModule include_module libexec/apache2/mod_include.so
14 LoadModule log_config_module libexec/apache2/mod_log_config.so
15 LoadModule headers_module libexec/apache2/mod_headers.so
16 LoadModule ssl_module libexec/apache2/mod_ssl.so
17 LoadModule mime_module libexec/apache2/mod_mime.so
18 LoadModule asis_module libexec/apache2/mod_asis.so
19 LoadModule cgi_module libexec/apache2/mod_cgi.so
20 LoadModule negotiation_module libexec/apache2/mod_negotiation.so
21 LoadModule imagemap_module libexec/apache2/mod_imagemap.so
22 LoadModule actions_module libexec/apache2/mod_actions.so
23 LoadModule alias_module libexec/apache2/mod_alias.so
24 LoadModule rewrite_module libexec/apache2/mod_rewrite.so
25 LoadModule php5_module libexec/apache2/libphp5.so
26 LoadModule autoindex_module libexec/apache2/mod_autoindex.so
28 ServerName 127.0.0.1
30 <Directory />
31     Options Indexes FollowSymLinks MultiViews ExecCGI Includes
32     AllowOverride All
33     Order allow,deny
34     Allow from all
35 </Directory>
37 AccessFileName .htaccess
39 <Files ~ "^\.([Hh][Tt]|[Dd][Ss]_[Ss])">
40     Order allow,deny
41     Deny from all
42     Satisfy All
43 </Files>
45 UseCanonicalName On
46 DefaultType text/plain
47 HostnameLookups Off
49 LogLevel warn
50 LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
51 LogFormat "%h %l %u %t \"%r\" %>s %b" common
52 LogFormat "%{Referer}i -> %U" referer
53 LogFormat "%{User-agent}i" agent
55 ServerSignature On
57 <IfModule mod_alias.c>
58 </IfModule>
60 <IfModule mod_mime.c>
61     AddLanguage da .dk
62     AddLanguage nl .nl
63     AddLanguage en .en
64     AddLanguage et .ee
65     AddLanguage fr .fr
66     AddLanguage de .de
67     AddLanguage el .el
68     AddLanguage he .he
69     AddCharset ISO-8859-8 .iso8859-8
70     AddLanguage it .it
71     AddLanguage ja .ja
72     AddCharset ISO-2022-JP .jis
73     AddLanguage kr .kr
74     AddCharset ISO-2022-KR .iso-kr
75     AddLanguage nn .nn
76     AddLanguage no .no
77     AddLanguage pl .po
78     AddCharset ISO-8859-2 .iso-pl
79     AddLanguage pt .pt
80     AddLanguage pt-br .pt-br
81     AddLanguage ltz .lu
82     AddLanguage ca .ca
83     AddLanguage es .es
84     AddLanguage sv .sv
85     AddLanguage cs .cz .cs
86     AddLanguage ru .ru
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
97     <IfModule mod_negotiation.c>
98         LanguagePriority en da nl et fr de el it ja kr no pl pt pt-br ru ltz ca es sv tw
99     </IfModule>
101     AddType application/x-tar .tgz
103     AddEncoding x-compress .Z
104     AddEncoding x-gzip .gz .tgz
106     AddHandler cgi-script .cgi .pl
108     AddType text/html .shtml
109     AddHandler server-parsed .shtml
111     AddHandler send-as-is asis
112 </IfModule>
114 <IfModule mod_php5.c>
115     AddType application/x-httpd-php .php
116     AddType application/x-httpd-php .bat
117     AddType application/x-httpd-php-source .phps
119     <IfModule mod_dir.c>
120         DirectoryIndex index.html index.php
121     </IfModule>
123     php_flag log_errors on
124     php_flag short_open_tag on
125 </IfModule>
127 <IfModule mod_rewrite.c>
128     RewriteEngine On
129     RewriteCond %{REQUEST_METHOD} ^TRACE
130     RewriteRule .* - [F]
131 </IfModule>
133 <VirtualHost *:8443>
134     ServerName 127.0.0.1
135     SSLEngine On
136 </VirtualHost>
139 # Apple-specific filesystem protection.
141 <Files "rsrc">
142     Order allow,deny
143     Deny from all
144     Satisfy All
145 </Files>
147 <Directory  ~ ".*\.\.namedfork">
148     Order allow,deny
149     Deny from all
150     Satisfy All
151 </Directory>