Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / http / conf / debian-httpd-2.2.conf
blob3cb09a9baa37af33a3c20cd35e55a3e032817147
1 ServerRoot "/usr"
3 LockFile "/tmp/WebKit/httpd.lock"
4 PidFile "/tmp/WebKit/httpd.pid"
5 ScoreBoardFile "/tmp/WebKit/httpd.scoreboard"
7 Timeout 300
8 KeepAlive On
9 MaxKeepAliveRequests 100
10 KeepAliveTimeout 15
12 MinSpareServers 1
13 MaxSpareServers 5
14 StartServers 1
15 MaxClients 150
16 MaxRequestsPerChild 100000
18 LoadModule mime_module        /usr/lib/apache2/modules/mod_mime.so
19 LoadModule negotiation_module /usr/lib/apache2/modules/mod_negotiation.so
20 LoadModule include_module    /usr/lib/apache2/modules/mod_include.so
21 LoadModule cgi_module         /usr/lib/apache2/modules/mod_cgi.so
22 LoadModule asis_module        /usr/lib/apache2/modules/mod_asis.so
23 LoadModule imagemap_module    /usr/lib/apache2/modules/mod_imagemap.so
24 LoadModule actions_module      /usr/lib/apache2/modules/mod_actions.so
25 LoadModule alias_module       /usr/lib/apache2/modules/mod_alias.so
26 LoadModule rewrite_module     /usr/lib/apache2/modules/mod_rewrite.so
27 LoadModule authz_host_module  /usr/lib/apache2/modules/mod_authz_host.so
28 LoadModule headers_module     /usr/lib/apache2/modules/mod_headers.so
29 LoadModule ssl_module         /usr/lib/apache2/modules/mod_ssl.so
30 LoadModule php5_module        /usr/lib/apache2/modules/libphp5.so
31 LoadModule autoindex_module   /usr/lib/apache2/modules/mod_autoindex.so
33 ServerName 127.0.0.1
35 <Directory />
36     Options Indexes FollowSymLinks MultiViews ExecCGI Includes
37     AllowOverride All
38     Order allow,deny
39     Allow from all
40 </Directory>
42 AccessFileName .htaccess
44 <Files ~ "^\.([Hh][Tt]|[Dd][Ss]_[Ss])">
45     Order allow,deny
46     Deny from all
47     Satisfy All
48 </Files>
50 UseCanonicalName On
51 DefaultType text/plain
52 HostnameLookups Off
54 LogLevel warn
55 LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
56 LogFormat "%h %l %u %t \"%r\" %>s %b" common
57 LogFormat "%{Referer}i -> %U" referer
58 LogFormat "%{User-agent}i" agent
60 ServerSignature On
62 <IfModule mod_alias.c>
63 </IfModule>
65 <IfModule mod_mime.c>
66     AddLanguage da .dk
67     AddLanguage nl .nl
68     AddLanguage en .en
69     AddLanguage et .ee
70     AddLanguage fr .fr
71     AddLanguage de .de
72     AddLanguage el .el
73     AddLanguage he .he
74     AddCharset ISO-8859-8 .iso8859-8
75     AddLanguage it .it
76     AddLanguage ja .ja
77     AddCharset ISO-2022-JP .jis
78     AddLanguage kr .kr
79     AddCharset ISO-2022-KR .iso-kr
80     AddLanguage nn .nn
81     AddLanguage no .no
82     AddLanguage pl .po
83     AddCharset ISO-8859-2 .iso-pl
84     AddLanguage pt .pt
85     AddLanguage pt-br .pt-br
86     AddLanguage ltz .lu
87     AddLanguage ca .ca
88     AddLanguage es .es
89     AddLanguage sv .sv
90     AddLanguage cs .cz .cs
91     AddLanguage ru .ru
92     AddLanguage zh-TW .zh-tw
93     AddCharset Big5         .Big5    .big5
94     AddCharset WINDOWS-1251 .cp-1251
95     AddCharset CP866        .cp866
96     AddCharset ISO-8859-5   .iso-ru
97     AddCharset KOI8-R       .koi8-r
98     AddCharset UCS-2        .ucs2
99     AddCharset UCS-4        .ucs4
100     AddCharset UTF-8        .utf8
102     <IfModule mod_negotiation.c>
103         LanguagePriority en da nl et fr de el it ja kr no pl pt pt-br ru ltz ca es sv tw
104     </IfModule>
106     AddType application/x-tar .tgz
108     AddEncoding x-compress .Z
109     AddEncoding x-gzip .gz .tgz
111     AddHandler cgi-script .cgi .pl
113     AddType text/html .shtml
114     AddHandler server-parsed .shtml
116     AddHandler send-as-is asis
117 </IfModule>
119 <IfModule mod_php5.c>
120     AddType application/x-httpd-php .php
121     AddType application/x-httpd-php .bat
122     AddType application/x-httpd-php-source .phps
124     <IfModule mod_dir.c>
125         DirectoryIndex index.html index.php
126     </IfModule>
128     php_flag log_errors on
129     php_flag short_open_tag on
130 </IfModule>
132 <IfModule mod_rewrite.c>
133     RewriteEngine On
134     RewriteCond %{REQUEST_METHOD} ^TRACE
135     RewriteRule .* - [F]
136 </IfModule>
138 <VirtualHost *:8443>
139     ServerName 127.0.0.1
140     SSLEngine On
141 </VirtualHost>
144 # Apple-specific filesystem protection.
146 <Files "rsrc">
147     Order allow,deny
148     Deny from all
149     Satisfy All
150 </Files>
152 <Directory  ~ ".*\.\.namedfork">
153     Order allow,deny
154     Deny from all
155     Satisfy All
156 </Directory>