Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(769)

Side by Side Diff: sky/tests/http/conf/debian-httpd-2.2.conf

Issue 1215063003: Remove Sky tests that we don't intend to port to the new world (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 ServerRoot "/usr"
2
3 LockFile "/tmp/WebKit/httpd.lock"
4 PidFile "/tmp/WebKit/httpd.pid"
5 ScoreBoardFile "/tmp/WebKit/httpd.scoreboard"
6
7 Timeout 300
8 KeepAlive On
9 MaxKeepAliveRequests 100
10 KeepAliveTimeout 15
11
12 MinSpareServers 1
13 MaxSpareServers 5
14 StartServers 1
15 MaxClients 150
16 MaxRequestsPerChild 100000
17
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
32
33 ServerName 127.0.0.1
34
35 <Directory />
36 Options Indexes FollowSymLinks MultiViews ExecCGI Includes
37 AllowOverride All
38 Order allow,deny
39 Allow from all
40 </Directory>
41
42 AccessFileName .htaccess
43
44 <Files ~ "^\.([Hh][Tt]|[Dd][Ss]_[Ss])">
45 Order allow,deny
46 Deny from all
47 Satisfy All
48 </Files>
49
50 UseCanonicalName On
51 DefaultType text/plain
52 HostnameLookups Off
53
54 LogLevel warn
55 LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combine d
56 LogFormat "%h %l %u %t \"%r\" %>s %b" common
57 LogFormat "%{Referer}i -> %U" referer
58 LogFormat "%{User-agent}i" agent
59
60 ServerSignature On
61
62 <IfModule mod_alias.c>
63 </IfModule>
64
65 <IfModule mod_headers.c>
66 Header unset ETag
67 Header set Cache-Control "max-age=0, no-cache, no-store, must-revalidate"
68 Header set Pragma "no-cache"
69 Header set Expires "Wed, 13 Jul 1972 03:00:00 GMT"
70 </IfModule>
71
72 <IfModule mod_mime.c>
73 AddLanguage da .dk
74 AddLanguage nl .nl
75 AddLanguage en .en
76 AddLanguage et .ee
77 AddLanguage fr .fr
78 AddLanguage de .de
79 AddLanguage el .el
80 AddLanguage he .he
81 AddCharset ISO-8859-8 .iso8859-8
82 AddLanguage it .it
83 AddLanguage ja .ja
84 AddCharset ISO-2022-JP .jis
85 AddLanguage kr .kr
86 AddCharset ISO-2022-KR .iso-kr
87 AddLanguage nn .nn
88 AddLanguage no .no
89 AddLanguage pl .po
90 AddCharset ISO-8859-2 .iso-pl
91 AddLanguage pt .pt
92 AddLanguage pt-br .pt-br
93 AddLanguage ltz .lu
94 AddLanguage ca .ca
95 AddLanguage es .es
96 AddLanguage sv .sv
97 AddLanguage cs .cz .cs
98 AddLanguage ru .ru
99 AddLanguage zh-TW .zh-tw
100 AddCharset Big5 .Big5 .big5
101 AddCharset WINDOWS-1251 .cp-1251
102 AddCharset CP866 .cp866
103 AddCharset ISO-8859-5 .iso-ru
104 AddCharset KOI8-R .koi8-r
105 AddCharset UCS-2 .ucs2
106 AddCharset UCS-4 .ucs4
107 AddCharset UTF-8 .utf8
108
109 <IfModule mod_negotiation.c>
110 LanguagePriority en da nl et fr de el it ja kr no pl pt pt-br ru ltz ca es sv tw
111 </IfModule>
112
113 AddType application/x-tar .tgz
114
115 AddEncoding x-compress .Z
116 AddEncoding x-gzip .gz .tgz
117
118 AddHandler cgi-script .cgi .pl
119
120 AddType text/html .shtml
121 AddHandler server-parsed .shtml
122
123 AddHandler send-as-is asis
124 </IfModule>
125
126 <IfModule mod_php5.c>
127 AddType application/x-httpd-php .php
128 AddType application/x-httpd-php .bat
129 AddType application/x-httpd-php-source .phps
130
131 <IfModule mod_dir.c>
132 DirectoryIndex index.html index.php
133 </IfModule>
134
135 php_flag log_errors on
136 php_flag short_open_tag on
137 </IfModule>
138
139 <IfModule mod_rewrite.c>
140 RewriteEngine On
141 RewriteCond %{REQUEST_METHOD} ^TRACE
142 RewriteRule .* - [F]
143 </IfModule>
144
145 <VirtualHost *:8443>
146 ServerName 127.0.0.1
147 SSLEngine On
148 </VirtualHost>
149
150 #
151 # Apple-specific filesystem protection.
152 #
153 <Files "rsrc">
154 Order allow,deny
155 Deny from all
156 Satisfy All
157 </Files>
158
159 <Directory ~ ".*\.\.namedfork">
160 Order allow,deny
161 Deny from all
162 Satisfy All
163 </Directory>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698