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

Side by Side Diff: sky/tests/http/conf/debian-httpd-2.4.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 ServerTokens OS
2 ServerRoot "/usr/lib/apache2"
3
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 mpm_prefork_module modules/mod_mpm_prefork.so
19 LoadModule authz_core_module modules/mod_authz_core.so
20 LoadModule authz_host_module modules/mod_authz_host.so
21 LoadModule include_module modules/mod_include.so
22 LoadModule headers_module modules/mod_headers.so
23 LoadModule mime_module modules/mod_mime.so
24 LoadModule negotiation_module modules/mod_negotiation.so
25 LoadModule actions_module modules/mod_actions.so
26 LoadModule alias_module modules/mod_alias.so
27 LoadModule rewrite_module modules/mod_rewrite.so
28 LoadModule cgi_module modules/mod_cgi.so
29 LoadModule ssl_module modules/mod_ssl.so
30 LoadModule php5_module modules/libphp5.so
31 LoadModule asis_module modules/mod_asis.so
32
33 ServerName 127.0.0.1
34
35 <Directory />
36 Options Indexes FollowSymLinks MultiViews ExecCGI Includes
37 AllowOverride All
38 Require all granted
39 </Directory>
40
41 AccessFileName .htaccess
42
43 <Files ~ "^\.([Hh][Tt]|[Dd][Ss]_[Ss])">
44 Require all denied
45 </Files>
46
47 UseCanonicalName On
48 HostnameLookups Off
49
50 TypesConfig /etc/mime.types
51
52 LogLevel warn
53 LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combine d
54 LogFormat "%h %l %u %t \"%r\" %>s %b" common
55 LogFormat "%{Referer}i -> %U" referer
56 LogFormat "%{User-agent}i" agent
57 ErrorLog /tmp/WebKit/error_log
58
59 ServerSignature On
60
61 AddLanguage ca .ca
62 AddLanguage cs .cz .cs
63 AddLanguage da .dk
64 AddLanguage de .de
65 AddLanguage el .el
66 AddLanguage en .en
67 AddLanguage eo .eo
68 AddLanguage es .es
69 AddLanguage et .et
70 AddLanguage fr .fr
71 AddLanguage he .he
72 AddLanguage hr .hr
73 AddLanguage it .it
74 AddLanguage ja .ja
75 AddLanguage ko .ko
76 AddLanguage ltz .ltz
77 AddLanguage nl .nl
78 AddLanguage nn .nn
79 AddLanguage no .no
80 AddLanguage pl .po
81 AddLanguage pt .pt
82 AddLanguage pt-BR .pt-br
83 AddLanguage ru .ru
84 AddLanguage sv .sv
85 AddLanguage zh-CN .zh-cn
86 AddLanguage zh-TW .zh-tw
87 AddCharset Big5 .Big5 .big5
88 AddCharset WINDOWS-1251 .cp-1251
89 AddCharset CP866 .cp866
90 AddCharset ISO-8859-5 .iso-ru
91 AddCharset KOI8-R .koi8-r
92 AddCharset UCS-2 .ucs2
93 AddCharset UCS-4 .ucs4
94 AddCharset UTF-8 .utf8
95
96 <IfModule mod_negotiation.c>
97 LanguagePriority en ca cs da de el eo es et fr he hr it ja ko ltz nl nn no p l pt pt-BR ru sv zh-CN zh-TW
98 </IfModule>
99
100 AddType application/x-tar .tgz
101
102 AddEncoding x-compress .Z
103 AddEncoding x-gzip .gz .tgz
104
105 AddType application/x-x509-ca-cert .crt
106 AddType application/x-pkcs7-crl .crl
107
108 AddHandler cgi-script .cgi .pl
109
110 AddType text/html .shtml
111 AddOutputFilter INCLUDES .shtml
112
113 AddHandler send-as-is asis
114
115 <IfModule mod_php5.c>
116 AddType application/x-httpd-php .php
117 AddType application/x-httpd-php .bat
118 AddType application/x-httpd-php-source .phps
119
120 <IfModule mod_dir.c>
121 DirectoryIndex index.html index.php
122 </IfModule>
123
124 php_flag log_errors on
125 php_flag short_open_tag on
126 </IfModule>
127
128 <IfModule mod_rewrite.c>
129 RewriteEngine On
130 RewriteCond %{REQUEST_METHOD} ^TRACE
131 RewriteRule .* - [F]
132 </IfModule>
133
134 <VirtualHost *:8443>
135 ServerName 127.0.0.1
136 SSLEngine On
137 </VirtualHost>
138
139 #
140 # Apple-specific filesystem protection.
141 #
142 <Files "rsrc">
143 Require all denied
144 </Files>
145
146 <Directory ~ ".*\.\.namedfork">
147 Require all denied
148 </Directory>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698