Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / http / conf / win-httpd.conf
1 Timeout 300
2 KeepAlive On
3 MaxKeepAliveRequests 100
4 KeepAliveTimeout 15
5
6 LoadModule alias_module modules/mod_alias.so
7 LoadModule asis_module modules/mod_asis.so
8 LoadModule authz_host_module modules/mod_authz_host.so
9 LoadModule autoindex_module modules/mod_autoindex.so
10 LoadModule cgi_module modules/mod_cgi.so 
11 LoadModule headers_module modules/mod_headers.so
12 LoadModule log_config_module modules/mod_log_config.so
13 LoadModule mime_module modules/mod_mime.so
14 LoadModule php5_module modules/php5apache2_2.dll
15 LoadModule rewrite_module modules/mod_rewrite.so
16 LoadModule ssl_module modules/mod_ssl.so
17
18 ServerName 127.0.0.1
19
20 ScriptInterpreterSource Registry-Strict
21
22 <Directory />
23     Options Indexes FollowSymLinks MultiViews ExecCGI Includes
24     AllowOverride All
25     Order allow,deny
26     Allow from all
27 </Directory>
28
29 AccessFileName .htaccess
30
31 <Files ~ "^\.([Hh][Tt]|[Dd][Ss]_[Ss])">
32     Order allow,deny
33     Deny from all
34     Satisfy All
35 </Files>
36
37 UseCanonicalName On
38 DefaultType text/plain
39 HostnameLookups Off
40
41 LogLevel warn
42 LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
43 LogFormat "%h %l %u %t \"%r\" %>s %b" common
44 LogFormat "%{Referer}i -> %U" referer
45 LogFormat "%{User-agent}i" agent
46
47 ServerSignature On
48
49 <IfModule mod_alias.c>
50 </IfModule>
51
52 <IfModule mod_mime.c>
53     AddLanguage da .dk
54     AddLanguage nl .nl
55     AddLanguage en .en
56     AddLanguage et .ee
57     AddLanguage fr .fr
58     AddLanguage de .de
59     AddLanguage el .el
60     AddLanguage he .he
61     AddCharset ISO-8859-8 .iso8859-8
62     AddLanguage it .it
63     AddLanguage ja .ja
64     AddCharset ISO-2022-JP .jis
65     AddLanguage kr .kr
66     AddCharset ISO-2022-KR .iso-kr
67     AddLanguage nn .nn
68     AddLanguage no .no
69     AddLanguage pl .po
70     AddCharset ISO-8859-2 .iso-pl
71     AddLanguage pt .pt
72     AddLanguage pt-br .pt-br
73     AddLanguage ltz .lu
74     AddLanguage ca .ca
75     AddLanguage es .es
76     AddLanguage sv .sv
77     AddLanguage cs .cz .cs
78     AddLanguage ru .ru
79     AddLanguage zh-TW .zh-tw
80     AddCharset Big5         .Big5    .big5
81     AddCharset WINDOWS-1251 .cp-1251
82     AddCharset CP866        .cp866
83     AddCharset ISO-8859-5   .iso-ru
84     AddCharset KOI8-R       .koi8-r
85     AddCharset UCS-2        .ucs2
86     AddCharset UCS-4        .ucs4
87     AddCharset UTF-8        .utf8
88
89     <IfModule mod_negotiation.c>
90         LanguagePriority en da nl et fr de el it ja kr no pl pt pt-br ru ltz ca es sv tw
91     </IfModule>
92
93     AddType application/x-tar .tgz
94
95     AddEncoding x-compress .Z
96     AddEncoding x-gzip .gz .tgz
97
98     AddHandler cgi-script .cgi .pl
99
100     AddType text/html .shtml
101     AddHandler server-parsed .shtml
102
103     AddHandler send-as-is asis
104 </IfModule>
105
106 <IfModule mod_php5.c>
107     AddType application/x-httpd-php .php
108     AddType application/x-httpd-php .bat
109     AddType application/x-httpd-php-source .phps
110
111     <IfModule mod_dir.c>
112         DirectoryIndex index.html index.php
113     </IfModule>
114
115     php_flag log_errors on
116     php_flag short_open_tag on
117 </IfModule>
118
119 <IfModule mod_rewrite.c>
120     RewriteEngine On
121     RewriteCond %{REQUEST_METHOD} ^TRACE
122     RewriteRule .* - [F]
123 </IfModule>
124
125 <VirtualHost *:8443>
126     ServerName 127.0.0.1
127     SSLEngine On
128 </VirtualHost>
129
130 #
131 # Apple-specific filesystem protection.
132 #
133 <Files "rsrc">
134     Order allow,deny
135     Deny from all
136     Satisfy All
137 </Files>
138
139 <Directory  ~ ".*\.\.namedfork">
140     Order allow,deny
141     Deny from all
142     Satisfy All
143 </Directory>