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

Side by Side Diff: LayoutTests/http/conf/fedora-httpd-2.2.conf

Issue 1201873002: Move LayoutTest Linux distribution detection to PlatformInfo (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove crusty comment Created 5 years, 6 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
« no previous file with comments | « LayoutTests/http/conf/arch-httpd-2.4.conf ('k') | LayoutTests/http/conf/fedora-httpd-2.4.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 ServerTokens OS
2 ServerRoot "/etc/httpd"
3
4 LockFile "/tmp/WebKit/httpd.lock"
5 PidFile "/tmp/WebKit/httpd.pid"
6 ScoreBoardFile "/tmp/WebKit/httpd.scoreboard"
7
8 Timeout 300
9 KeepAlive On
10 MaxKeepAliveRequests 100
11 KeepAliveTimeout 15
12
13 MinSpareServers 1
14 MaxSpareServers 5
15 StartServers 1
16 MaxClients 150
17 MaxRequestsPerChild 100000
18
19 LoadModule authz_host_module modules/mod_authz_host.so
20 LoadModule include_module modules/mod_include.so
21 LoadModule log_config_module modules/mod_log_config.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 autoindex_module modules/mod_autoindex.so
32
33 LoadModule asis_module modules/mod_asis.so
34
35 User apache
36 Group apache
37
38 ServerAdmin root@localhost
39 ServerName 127.0.0.1
40
41 UseCanonicalName On
42
43 <Directory />
44 Options Indexes FollowSymLinks MultiViews ExecCGI Includes
45 AllowOverride All
46 Order allow,deny
47 Allow from all
48 </Directory>
49
50 AccessFileName .htaccess
51
52 <Files ~ "^\.([Hh][Tt]|[Dd][Ss]_[Ss])">
53 Order allow,deny
54 Deny from all
55 Satisfy All
56 </Files>
57
58 TypesConfig /etc/mime.types
59 DefaultType text/plain
60 HostnameLookups Off
61
62 LogLevel warn
63 LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combine d
64 LogFormat "%h %l %u %t \"%r\" %>s %b" common
65 LogFormat "%{Referer}i -> %U" referer
66 LogFormat "%{User-agent}i" agent
67
68 ServerSignature On
69
70 AddLanguage ca .ca
71 AddLanguage cs .cz .cs
72 AddLanguage da .dk
73 AddLanguage de .de
74 AddLanguage el .el
75 AddLanguage en .en
76 AddLanguage eo .eo
77 AddLanguage es .es
78 AddLanguage et .et
79 AddLanguage fr .fr
80 AddLanguage he .he
81 AddLanguage hr .hr
82 AddLanguage it .it
83 AddLanguage ja .ja
84 AddLanguage ko .ko
85 AddLanguage ltz .ltz
86 AddLanguage nl .nl
87 AddLanguage nn .nn
88 AddLanguage no .no
89 AddLanguage pl .po
90 AddLanguage pt .pt
91 AddLanguage pt-BR .pt-br
92 AddLanguage ru .ru
93 AddLanguage sv .sv
94 AddLanguage zh-CN .zh-cn
95 AddLanguage zh-TW .zh-tw
96 AddCharset Big5 .Big5 .big5
97 AddCharset WINDOWS-1251 .cp-1251
98 AddCharset CP866 .cp866
99 AddCharset ISO-8859-5 .iso-ru
100 AddCharset KOI8-R .koi8-r
101 AddCharset UCS-2 .ucs2
102 AddCharset UCS-4 .ucs4
103 AddCharset UTF-8 .utf8
104
105 <IfModule mod_negotiation.c>
106 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
107 </IfModule>
108
109 AddEncoding x-compress .Z
110 AddEncoding x-gzip .gz .tgz
111
112 AddType application/x-x509-ca-cert .crt
113 AddType application/x-pkcs7-crl .crl
114
115 AddHandler cgi-script .cgi .pl
116
117 AddType text/html .shtml
118 AddOutputFilter INCLUDES .shtml
119
120 AddHandler send-as-is asis
121
122 <IfModule mod_php5.c>
123 AddType application/x-httpd-php .php
124 AddType application/x-httpd-php .bat
125 AddType application/x-httpd-php-source .phps
126
127 <IfModule mod_dir.c>
128 DirectoryIndex index.html index.php
129 </IfModule>
130
131 php_flag log_errors on
132 php_flag short_open_tag on
133 </IfModule>
134
135 <IfModule mod_rewrite.c>
136 RewriteEngine On
137 RewriteCond %{REQUEST_METHOD} ^TRACE
138 RewriteRule .* - [F]
139 </IfModule>
140
141 <VirtualHost *:8443>
142 ServerName 127.0.0.1
143 SSLEngine On
144 </VirtualHost>
145
146 #
147 # Apple-specific filesystem protection.
148 #
149 <Files "rsrc">
150 Order allow,deny
151 Deny from all
152 Satisfy All
153 </Files>
154
155 <Directory ~ ".*\.\.namedfork">
156 Order allow,deny
157 Deny from all
158 Satisfy All
159 </Directory>
OLDNEW
« no previous file with comments | « LayoutTests/http/conf/arch-httpd-2.4.conf ('k') | LayoutTests/http/conf/fedora-httpd-2.4.conf » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698