Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / http / conf / cygwin-httpd.conf
blob214bf7281e32f4e026c310e8b7eab0e2eb6081ab
1 ServerType standalone
3 ServerRoot "/usr"
4 LockFile "/tmp/WebKit/httpd.lock"
5 PidFile "/tmp/WebKit/httpd.pid"
6 ScoreBoardFile "/tmp/WebKit/httpd.scoreboard"
8 ResourceConfig /dev/null
9 AccessConfig /dev/null
11 Timeout 300
12 KeepAlive On
13 MaxKeepAliveRequests 100
14 KeepAliveTimeout 15
16 MinSpareServers 1
17 MaxSpareServers 5
18 StartServers 1
19 MaxClients 150
20 MaxRequestsPerChild 100000
22 LoadModule config_log_module  lib/apache/mod_log_config.dll
23 LoadModule mime_module        lib/apache/mod_mime.dll
24 LoadModule negotiation_module lib/apache/mod_negotiation.dll
25 LoadModule includes_module    lib/apache/mod_include.dll
26 LoadModule cgi_module         lib/apache/mod_cgi.dll
27 LoadModule asis_module        lib/apache/mod_asis.dll
28 LoadModule imap_module        lib/apache/mod_imap.dll
29 LoadModule action_module      lib/apache/mod_actions.dll
30 LoadModule alias_module       lib/apache/mod_alias.dll
31 LoadModule rewrite_module     lib/apache/mod_rewrite.dll
32 LoadModule access_module      lib/apache/mod_access.dll
33 LoadModule auth_module        lib/apache/mod_auth.dll
34 LoadModule headers_module     lib/apache/mod_headers.dll
35 LoadModule php4_module        lib/apache/libphp4.dll
37 #  Reconstruction of the complete module list from all available modules
38 #  (static and shared ones) to achieve correct module execution order.
39 #  [WHENEVER YOU CHANGE THE LOADMODULE SECTION ABOVE UPDATE THIS, TOO]
40 ClearModuleList
41 AddModule mod_log_config.c
42 AddModule mod_mime.c
43 AddModule mod_negotiation.c
44 AddModule mod_include.c
45 AddModule mod_cgi.c
46 AddModule mod_asis.c
47 AddModule mod_imap.c
48 AddModule mod_actions.c
49 AddModule mod_alias.c
50 AddModule mod_rewrite.c
51 AddModule mod_access.c
52 AddModule mod_auth.c
53 AddModule mod_headers.c
54 AddModule mod_so.c
55 AddModule mod_php4.c
57 ServerName 127.0.0.1
59 <Directory />
60     Options Indexes FollowSymLinks MultiViews ExecCGI Includes
61     AllowOverride All
62     Order allow,deny
63     Allow from all
64 </Directory>
66 AccessFileName .htaccess
68 <Files ~ "^\.([Hh][Tt]|[Dd][Ss]_[Ss])">
69     Order allow,deny
70     Deny from all
71     Satisfy All
72 </Files>
74 UseCanonicalName On
75 DefaultType text/plain
76 HostnameLookups Off
78 LogLevel warn
79 LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
80 LogFormat "%h %l %u %t \"%r\" %>s %b" common
81 LogFormat "%{Referer}i -> %U" referer
82 LogFormat "%{User-agent}i" agent
84 ServerSignature On
86 <IfModule mod_alias.c>
87 </IfModule>
89 <IfModule mod_mime.c>
90     AddLanguage da .dk
91     AddLanguage nl .nl
92     AddLanguage en .en
93     AddLanguage et .ee
94     AddLanguage fr .fr
95     AddLanguage de .de
96     AddLanguage el .el
97     AddLanguage he .he
98     AddCharset ISO-8859-8 .iso8859-8
99     AddLanguage it .it
100     AddLanguage ja .ja
101     AddCharset ISO-2022-JP .jis
102     AddLanguage kr .kr
103     AddCharset ISO-2022-KR .iso-kr
104     AddLanguage nn .nn
105     AddLanguage no .no
106     AddLanguage pl .po
107     AddCharset ISO-8859-2 .iso-pl
108     AddLanguage pt .pt
109     AddLanguage pt-br .pt-br
110     AddLanguage ltz .lu
111     AddLanguage ca .ca
112     AddLanguage es .es
113     AddLanguage sv .sv
114     AddLanguage cs .cz .cs
115     AddLanguage ru .ru
116     AddLanguage zh-TW .zh-tw
117     AddCharset Big5         .Big5    .big5
118     AddCharset WINDOWS-1251 .cp-1251
119     AddCharset CP866        .cp866
120     AddCharset ISO-8859-5   .iso-ru
121     AddCharset KOI8-R       .koi8-r
122     AddCharset UCS-2        .ucs2
123     AddCharset UCS-4        .ucs4
124     AddCharset UTF-8        .utf8
126     <IfModule mod_negotiation.c>
127         LanguagePriority en da nl et fr de el it ja kr no pl pt pt-br ru ltz ca es sv tw
128     </IfModule>
130     AddType application/x-tar .tgz
132     AddEncoding x-compress .Z
133     AddEncoding x-gzip .gz .tgz
135     AddHandler cgi-script .cgi .pl
137     AddType text/html .shtml
138     AddHandler server-parsed .shtml
140     AddHandler send-as-is asis
141 </IfModule>
143 <IfModule mod_php4.c>
144     AddType application/x-httpd-php .php
145     AddType application/x-httpd-php .bat
146     AddType application/x-httpd-php-source .phps
148     <IfModule mod_dir.c>
149         DirectoryIndex index.html index.php
150     </IfModule>
152     php_flag log_errors on
153     php_flag short_open_tag on
154 </IfModule>
156 <IfModule mod_rewrite.c>
157     RewriteEngine On
158     RewriteCond %{REQUEST_METHOD} ^TRACE
159     RewriteRule .* - [F]
160 </IfModule>
163 # Apple-specific filesystem protection.
165 <Files "rsrc">
166     Order allow,deny
167     Deny from all
168     Satisfy All
169 </Files>
171 <Directory  ~ ".*\.\.namedfork">
172     Order allow,deny
173     Deny from all
174     Satisfy All
175 </Directory>