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

Side by Side Diff: LayoutTests/http/conf/apache2-debian-httpd.conf

Issue 47023017: Make http LayoutTests work in Debian with Apache 2.4. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Picked fixup committed by allan.jensen@digia.com on the same day as the initial patch. Created 7 years, 1 month 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
« no previous file with comments | « no previous file | LayoutTests/http/conf/debian-httpd-2.2.conf » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
32 ServerName 127.0.0.1
33
34 <Directory />
35 Options Indexes FollowSymLinks MultiViews ExecCGI Includes
36 AllowOverride All
37 Order allow,deny
38 Allow from all
39 </Directory>
40
41 AccessFileName .htaccess
42
43 <Files ~ "^\.([Hh][Tt]|[Dd][Ss]_[Ss])">
44 Order allow,deny
45 Deny from all
46 Satisfy All
47 </Files>
48
49 UseCanonicalName On
50 DefaultType text/plain
51 HostnameLookups Off
52
53 LogLevel warn
54 LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combine d
55 LogFormat "%h %l %u %t \"%r\" %>s %b" common
56 LogFormat "%{Referer}i -> %U" referer
57 LogFormat "%{User-agent}i" agent
58
59 ServerSignature On
60
61 <IfModule mod_alias.c>
62 </IfModule>
63
64 <IfModule mod_mime.c>
65 AddLanguage da .dk
66 AddLanguage nl .nl
67 AddLanguage en .en
68 AddLanguage et .ee
69 AddLanguage fr .fr
70 AddLanguage de .de
71 AddLanguage el .el
72 AddLanguage he .he
73 AddCharset ISO-8859-8 .iso8859-8
74 AddLanguage it .it
75 AddLanguage ja .ja
76 AddCharset ISO-2022-JP .jis
77 AddLanguage kr .kr
78 AddCharset ISO-2022-KR .iso-kr
79 AddLanguage nn .nn
80 AddLanguage no .no
81 AddLanguage pl .po
82 AddCharset ISO-8859-2 .iso-pl
83 AddLanguage pt .pt
84 AddLanguage pt-br .pt-br
85 AddLanguage ltz .lu
86 AddLanguage ca .ca
87 AddLanguage es .es
88 AddLanguage sv .sv
89 AddLanguage cs .cz .cs
90 AddLanguage ru .ru
91 AddLanguage zh-TW .zh-tw
92 AddCharset Big5 .Big5 .big5
93 AddCharset WINDOWS-1251 .cp-1251
94 AddCharset CP866 .cp866
95 AddCharset ISO-8859-5 .iso-ru
96 AddCharset KOI8-R .koi8-r
97 AddCharset UCS-2 .ucs2
98 AddCharset UCS-4 .ucs4
99 AddCharset UTF-8 .utf8
100
101 <IfModule mod_negotiation.c>
102 LanguagePriority en da nl et fr de el it ja kr no pl pt pt-br ru ltz ca es sv tw
103 </IfModule>
104
105 AddType application/x-tar .tgz
106
107 AddEncoding x-compress .Z
108 AddEncoding x-gzip .gz .tgz
109
110 AddHandler cgi-script .cgi .pl
111
112 AddType text/html .shtml
113 AddHandler server-parsed .shtml
114
115 AddHandler send-as-is asis
116 </IfModule>
117
118 <IfModule mod_php5.c>
119 AddType application/x-httpd-php .php
120 AddType application/x-httpd-php .bat
121 AddType application/x-httpd-php-source .phps
122
123 <IfModule mod_dir.c>
124 DirectoryIndex index.html index.php
125 </IfModule>
126
127 php_flag log_errors on
128 php_flag short_open_tag on
129 </IfModule>
130
131 <IfModule mod_rewrite.c>
132 RewriteEngine On
133 RewriteCond %{REQUEST_METHOD} ^TRACE
134 RewriteRule .* - [F]
135 </IfModule>
136
137 <VirtualHost *:8443>
138 ServerName 127.0.0.1
139 SSLEngine On
140 </VirtualHost>
141
142 #
143 # Apple-specific filesystem protection.
144 #
145 <Files "rsrc">
146 Order allow,deny
147 Deny from all
148 Satisfy All
149 </Files>
150
151 <Directory ~ ".*\.\.namedfork">
152 Order allow,deny
153 Deny from all
154 Satisfy All
155 </Directory>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/http/conf/debian-httpd-2.2.conf » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698