bottleneck testcase based on rubbos
[bottlenecks.git] / rubbos / app / apache2 / conf / httpd-std.conf
1 #
2 # Based upon the NCSA server configuration files originally by Rob McCool.
3 #
4 # This is the main Apache server configuration file.  It contains the
5 # configuration directives that give the server its instructions.
6 # See <URL:http://httpd.apache.org/docs/2.0/> for detailed information about
7 # the directives.
8 #
9 # Do NOT simply read the instructions in here without understanding
10 # what they do.  They're here only as hints or reminders.  If you are unsure
11 # consult the online docs. You have been warned.  
12 #
13 # The configuration directives are grouped into three basic sections:
14 #  1. Directives that control the operation of the Apache server process as a
15 #     whole (the 'global environment').
16 #  2. Directives that define the parameters of the 'main' or 'default' server,
17 #     which responds to requests that aren't handled by a virtual host.
18 #     These directives also provide default values for the settings
19 #     of all virtual hosts.
20 #  3. Settings for virtual hosts, which allow Web requests to be sent to
21 #     different IP addresses or hostnames and have them handled by the
22 #     same Apache server process.
23 #
24 # Configuration and logfile names: If the filenames you specify for many
25 # of the server's control files begin with "/" (or "drive:/" for Win32), the
26 # server will use that explicit path.  If the filenames do *not* begin
27 # with "/", the value of ServerRoot is prepended -- so "logs/foo.log"
28 # with ServerRoot set to "/bottlenecks/rubbos/app/apache2" will be interpreted by the
29 # server as "/bottlenecks/rubbos/app/apache2/logs/foo.log".
30 #
31
32 ### Section 1: Global Environment
33 #
34 # The directives in this section affect the overall operation of Apache,
35 # such as the number of concurrent requests it can handle or where it
36 # can find its configuration files.
37 #
38
39 #
40 # ServerRoot: The top of the directory tree under which the server's
41 # configuration, error, and log files are kept.
42 #
43 # NOTE!  If you intend to place this on an NFS (or otherwise network)
44 # mounted filesystem then please read the LockFile documentation (available
45 # at <URL:http://httpd.apache.org/docs/2.0/mod/mpm_common.html#lockfile>);
46 # you will save yourself a lot of trouble.
47 #
48 # Do NOT add a slash at the end of the directory path.
49 #
50 ServerRoot "/bottlenecks/rubbos/app/apache2"
51
52 #
53 # The accept serialization lock file MUST BE STORED ON A LOCAL DISK.
54 #
55 <IfModule !mpm_winnt.c>
56 <IfModule !mpm_netware.c>
57 #LockFile logs/accept.lock
58 </IfModule>
59 </IfModule>
60
61 #
62 # ScoreBoardFile: File used to store internal server process information.
63 # If unspecified (the default), the scoreboard will be stored in an
64 # anonymous shared memory segment, and will be unavailable to third-party
65 # applications.
66 # If specified, ensure that no two invocations of Apache share the same
67 # scoreboard file. The scoreboard file MUST BE STORED ON A LOCAL DISK.
68 #
69 <IfModule !mpm_netware.c>
70 <IfModule !perchild.c>
71 #ScoreBoardFile logs/apache_runtime_status
72 </IfModule>
73 </IfModule>
74
75
76 #
77 # PidFile: The file in which the server should record its process
78 # identification number when it starts.
79 #
80 <IfModule !mpm_netware.c>
81 PidFile logs/httpd.pid
82 </IfModule>
83
84 #
85 # Timeout: The number of seconds before receives and sends time out.
86 #
87 Timeout 300
88
89 #
90 # KeepAlive: Whether or not to allow persistent connections (more than
91 # one request per connection). Set to "Off" to deactivate.
92 #
93 KeepAlive On
94
95 #
96 # MaxKeepAliveRequests: The maximum number of requests to allow
97 # during a persistent connection. Set to 0 to allow an unlimited amount.
98 # We recommend you leave this number high, for maximum performance.
99 #
100 MaxKeepAliveRequests 100
101
102 #
103 # KeepAliveTimeout: Number of seconds to wait for the next request from the
104 # same client on the same connection.
105 #
106 KeepAliveTimeout 15
107
108 ##
109 ## Server-Pool Size Regulation (MPM specific)
110 ## 
111
112 # prefork MPM
113 # StartServers: number of server processes to start
114 # MinSpareServers: minimum number of server processes which are kept spare
115 # MaxSpareServers: maximum number of server processes which are kept spare
116 # MaxClients: maximum number of server processes allowed to start
117 # MaxRequestsPerChild: maximum number of requests a server process serves
118 <IfModule prefork.c>
119 StartServers         5
120 MinSpareServers      5
121 MaxSpareServers     10
122 MaxClients         150
123 MaxRequestsPerChild  0
124 </IfModule>
125
126 # worker MPM
127 # StartServers: initial number of server processes to start
128 # MaxClients: maximum number of simultaneous client connections
129 # MinSpareThreads: minimum number of worker threads which are kept spare
130 # MaxSpareThreads: maximum number of worker threads which are kept spare
131 # ThreadsPerChild: constant number of worker threads in each server process
132 # MaxRequestsPerChild: maximum number of requests a server process serves
133 <IfModule worker.c>
134 StartServers         2
135 MaxClients         150
136 MinSpareThreads     25
137 MaxSpareThreads     75 
138 ThreadsPerChild     25
139 MaxRequestsPerChild  0
140 </IfModule>
141
142 # perchild MPM
143 # NumServers: constant number of server processes
144 # StartThreads: initial number of worker threads in each server process
145 # MinSpareThreads: minimum number of worker threads which are kept spare
146 # MaxSpareThreads: maximum number of worker threads which are kept spare
147 # MaxThreadsPerChild: maximum number of worker threads in each server process
148 # MaxRequestsPerChild: maximum number of connections per server process
149 <IfModule perchild.c>
150 NumServers           5
151 StartThreads         5
152 MinSpareThreads      5
153 MaxSpareThreads     10
154 MaxThreadsPerChild  20
155 MaxRequestsPerChild  0
156 </IfModule>
157
158 # WinNT MPM
159 # ThreadsPerChild: constant number of worker threads in the server process
160 # MaxRequestsPerChild: maximum  number of requests a server process serves
161 <IfModule mpm_winnt.c>
162 ThreadsPerChild 250
163 MaxRequestsPerChild  0
164 </IfModule>
165
166 # BeOS MPM
167 # StartThreads: how many threads do we initially spawn?
168 # MaxClients:   max number of threads we can have (1 thread == 1 client)
169 # MaxRequestsPerThread: maximum number of requests each thread will process
170 <IfModule beos.c>
171 StartThreads               10
172 MaxClients                 50
173 MaxRequestsPerThread       10000
174 </IfModule>    
175
176 # NetWare MPM
177 # ThreadStackSize: Stack size allocated for each worker thread
178 # StartThreads: Number of worker threads launched at server startup
179 # MinSpareThreads: Minimum number of idle threads, to handle request spikes
180 # MaxSpareThreads: Maximum number of idle threads
181 # MaxThreads: Maximum number of worker threads alive at the same time
182 # MaxRequestsPerChild: Maximum  number of requests a thread serves. It is 
183 #                      recommended that the default value of 0 be set for this
184 #                      directive on NetWare.  This will allow the thread to 
185 #                      continue to service requests indefinitely.                          
186 <IfModule mpm_netware.c>
187 ThreadStackSize      65536
188 StartThreads           250
189 MinSpareThreads         25
190 MaxSpareThreads        250
191 MaxThreads            1000
192 MaxRequestsPerChild      0
193 MaxMemFree             100
194 </IfModule>
195
196 # OS/2 MPM
197 # StartServers: Number of server processes to maintain
198 # MinSpareThreads: Minimum number of idle threads per process, 
199 #                  to handle request spikes
200 # MaxSpareThreads: Maximum number of idle threads per process
201 # MaxRequestsPerChild: Maximum number of connections per server process
202 <IfModule mpmt_os2.c>
203 StartServers           2
204 MinSpareThreads        5
205 MaxSpareThreads       10
206 MaxRequestsPerChild    0
207 </IfModule>
208
209 #
210 # Listen: Allows you to bind Apache to specific IP addresses and/or
211 # ports, instead of the default. See also the <VirtualHost>
212 # directive.
213 #
214 # Change this to Listen on specific IP addresses as shown below to 
215 # prevent Apache from glomming onto all bound IP addresses (0.0.0.0)
216 #
217 #Listen 12.34.56.78:80
218
219 Listen 80
220
221 #
222 # Dynamic Shared Object (DSO) Support
223 #
224 # To be able to use the functionality of a module which was built as a DSO you
225 # have to place corresponding `LoadModule' lines at this location so the
226 # directives contained in it are actually available _before_ they are used.
227 # Statically compiled modules (those listed by `httpd -l') do not need
228 # to be loaded here.
229 #
230 # Example:
231 # LoadModule foo_module modules/mod_foo.so
232 #
233
234 #
235 # ExtendedStatus controls whether Apache will generate "full" status
236 # information (ExtendedStatus On) or just basic information (ExtendedStatus
237 # Off) when the "server-status" handler is called. The default is Off.
238 #
239 #ExtendedStatus On
240
241 ### Section 2: 'Main' server configuration
242 #
243 # The directives in this section set up the values used by the 'main'
244 # server, which responds to any requests that aren't handled by a
245 # <VirtualHost> definition.  These values also provide defaults for
246 # any <VirtualHost> containers you may define later in the file.
247 #
248 # All of these directives may appear inside <VirtualHost> containers,
249 # in which case these default settings will be overridden for the
250 # virtual host being defined.
251 #
252
253 <IfModule !mpm_winnt.c>
254 <IfModule !mpm_netware.c>
255 #
256 # If you wish httpd to run as a different user or group, you must run
257 # httpd as root initially and it will switch.  
258 #
259 # User/Group: The name (or #number) of the user/group to run httpd as.
260 #  . On SCO (ODT 3) use "User nouser" and "Group nogroup".
261 #  . On HPUX you may not be able to use shared memory as nobody, and the
262 #    suggested workaround is to create a user www and use that user.
263 #  NOTE that some kernels refuse to setgid(Group) or semctl(IPC_SET)
264 #  when the value of (unsigned)Group is above 60000; 
265 #  don't use Group #-1 on these systems!
266 #
267 User nobody
268 Group #-1
269 </IfModule>
270 </IfModule>
271
272 #
273 # ServerAdmin: Your address, where problems with the server should be
274 # e-mailed.  This address appears on some server-generated pages, such
275 # as error documents.  e.g. admin@your-domain.com
276 #
277 ServerAdmin you@example.com
278
279 #
280 # ServerName gives the name and port that the server uses to identify itself.
281 # This can often be determined automatically, but we recommend you specify
282 # it explicitly to prevent problems during startup.
283 #
284 # If this is not set to valid DNS name for your host, server-generated
285 # redirections will not work.  See also the UseCanonicalName directive.
286 #
287 # If your host doesn't have a registered DNS name, enter its IP address here.
288 # You will have to access it by its address anyway, and this will make 
289 # redirections work in a sensible way.
290 #
291 #ServerName www.example.com:80
292
293 #
294 # UseCanonicalName: Determines how Apache constructs self-referencing 
295 # URLs and the SERVER_NAME and SERVER_PORT variables.
296 # When set "Off", Apache will use the Hostname and Port supplied
297 # by the client.  When set "On", Apache will use the value of the
298 # ServerName directive.
299 #
300 UseCanonicalName Off
301
302 #
303 # DocumentRoot: The directory out of which you will serve your
304 # documents. By default, all requests are taken from this directory, but
305 # symbolic links and aliases may be used to point to other locations.
306 #
307 DocumentRoot "/bottlenecks/rubbos/app/apache2/htdocs"
308
309 #
310 # Each directory to which Apache has access can be configured with respect
311 # to which services and features are allowed and/or disabled in that
312 # directory (and its subdirectories). 
313 #
314 # First, we configure the "default" to be a very restrictive set of 
315 # features.  
316 #
317 <Directory />
318     Options FollowSymLinks
319     AllowOverride None
320 </Directory>
321
322 #
323 # Note that from this point forward you must specifically allow
324 # particular features to be enabled - so if something's not working as
325 # you might expect, make sure that you have specifically enabled it
326 # below.
327 #
328
329 #
330 # This should be changed to whatever you set DocumentRoot to.
331 #
332 <Directory "/bottlenecks/rubbos/app/apache2/htdocs">
333
334 #
335 # Possible values for the Options directive are "None", "All",
336 # or any combination of:
337 #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
338 #
339 # Note that "MultiViews" must be named *explicitly* --- "Options All"
340 # doesn't give it to you.
341 #
342 # The Options directive is both complicated and important.  Please see
343 # http://httpd.apache.org/docs/2.0/mod/core.html#options
344 # for more information.
345 #
346     Options Indexes FollowSymLinks
347
348 #
349 # AllowOverride controls what directives may be placed in .htaccess files.
350 # It can be "All", "None", or any combination of the keywords:
351 #   Options FileInfo AuthConfig Limit Indexes
352 #
353     AllowOverride None
354
355 #
356 # Controls who can get stuff from this server.
357 #
358     Order allow,deny
359     Allow from all
360
361 </Directory>
362
363 #
364 # UserDir: The name of the directory that is appended onto a user's home
365 # directory if a ~user request is received.
366 #
367 UserDir public_html
368
369 #
370 # Control access to UserDir directories.  The following is an example
371 # for a site where these directories are restricted to read-only.
372 #
373 #<Directory /home/*/public_html>
374 #    AllowOverride FileInfo AuthConfig Limit Indexes
375 #    Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
376 #    <Limit GET POST OPTIONS PROPFIND>
377 #        Order allow,deny
378 #        Allow from all
379 #    </Limit>
380 #    <LimitExcept GET POST OPTIONS PROPFIND>
381 #        Order deny,allow
382 #        Deny from all
383 #    </LimitExcept>
384 #</Directory>
385
386 #
387 # DirectoryIndex: sets the file that Apache will serve if a directory
388 # is requested.
389 #
390 # The index.html.var file (a type-map) is used to deliver content-
391 # negotiated documents.  The MultiViews Option can be used for the 
392 # same purpose, but it is much slower.
393 #
394 DirectoryIndex index.html index.html.var
395
396 #
397 # AccessFileName: The name of the file to look for in each directory
398 # for additional configuration directives.  See also the AllowOverride 
399 # directive.
400 #
401 AccessFileName .htaccess
402
403 #
404 # The following lines prevent .htaccess and .htpasswd files from being 
405 # viewed by Web clients. 
406 #
407 <FilesMatch "^\.ht">
408     Order allow,deny
409     Deny from all
410 </FilesMatch>
411
412 #
413 # TypesConfig describes where the mime.types file (or equivalent) is
414 # to be found.
415 #
416 TypesConfig conf/mime.types
417
418 #
419 # DefaultType is the default MIME type the server will use for a document
420 # if it cannot otherwise determine one, such as from filename extensions.
421 # If your server contains mostly text or HTML documents, "text/plain" is
422 # a good value.  If most of your content is binary, such as applications
423 # or images, you may want to use "application/octet-stream" instead to
424 # keep browsers from trying to display binary files as though they are
425 # text.
426 #
427 DefaultType text/plain
428
429 #
430 # The mod_mime_magic module allows the server to use various hints from the
431 # contents of the file itself to determine its type.  The MIMEMagicFile
432 # directive tells the module where the hint definitions are located.
433 #
434 <IfModule mod_mime_magic.c>
435     MIMEMagicFile conf/magic
436 </IfModule>
437
438 #
439 # HostnameLookups: Log the names of clients or just their IP addresses
440 # e.g., www.apache.org (on) or 204.62.129.132 (off).
441 # The default is off because it'd be overall better for the net if people
442 # had to knowingly turn this feature on, since enabling it means that
443 # each client request will result in AT LEAST one lookup request to the
444 # nameserver.
445 #
446 HostnameLookups Off
447
448 #
449 # EnableMMAP: Control whether memory-mapping is used to deliver
450 # files (assuming that the underlying OS supports it).
451 # The default is on; turn this off if you serve from NFS-mounted 
452 # filesystems.  On some systems, turning it off (regardless of
453 # filesystem) can improve performance; for details, please see
454 # http://httpd.apache.org/docs/2.0/mod/core.html#enablemmap
455 #
456 #EnableMMAP off
457
458 #
459 # EnableSendfile: Control whether the sendfile kernel support is 
460 # used  to deliver files (assuming that the OS supports it).
461 # The default is on; turn this off if you serve from NFS-mounted 
462 # filesystems.  Please see
463 # http://httpd.apache.org/docs/2.0/mod/core.html#enablesendfile
464 #
465 #EnableSendfile off
466
467 #
468 # ErrorLog: The location of the error log file.
469 # If you do not specify an ErrorLog directive within a <VirtualHost>
470 # container, error messages relating to that virtual host will be
471 # logged here.  If you *do* define an error logfile for a <VirtualHost>
472 # container, that host's errors will be logged there and not here.
473 #
474 ErrorLog logs/error_log
475
476 #
477 # LogLevel: Control the number of messages logged to the error_log.
478 # Possible values include: debug, info, notice, warn, error, crit,
479 # alert, emerg.
480 #
481 LogLevel warn
482
483 #
484 # The following directives define some format nicknames for use with
485 # a CustomLog directive (see below).
486 #
487 LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
488 LogFormat "%h %l %u %t \"%r\" %>s %b" common
489 LogFormat "%{Referer}i -> %U" referer
490 LogFormat "%{User-agent}i" agent
491
492 # You need to enable mod_logio.c to use %I and %O
493 #LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
494
495 #
496 # The location and format of the access logfile (Common Logfile Format).
497 # If you do not define any access logfiles within a <VirtualHost>
498 # container, they will be logged here.  Contrariwise, if you *do*
499 # define per-<VirtualHost> access logfiles, transactions will be
500 # logged therein and *not* in this file.
501 #
502 CustomLog logs/access_log common
503
504 #
505 # If you would like to have agent and referer logfiles, uncomment the
506 # following directives.
507 #
508 #CustomLog logs/referer_log referer
509 #CustomLog logs/agent_log agent
510
511 #
512 # If you prefer a single logfile with access, agent, and referer information
513 # (Combined Logfile Format) you can use the following directive.
514 #
515 #CustomLog logs/access_log combined
516
517 #
518 # ServerTokens
519 # This directive configures what you return as the Server HTTP response
520 # Header. The default is 'Full' which sends information about the OS-Type
521 # and compiled in modules.
522 # Set to one of:  Full | OS | Minor | Minimal | Major | Prod
523 # where Full conveys the most information, and Prod the least.
524 #
525 ServerTokens Full
526
527 #
528 # Optionally add a line containing the server version and virtual host
529 # name to server-generated pages (internal error documents, FTP directory 
530 # listings, mod_status and mod_info output etc., but not CGI generated 
531 # documents or custom error documents).
532 # Set to "EMail" to also include a mailto: link to the ServerAdmin.
533 # Set to one of:  On | Off | EMail
534 #
535 ServerSignature On
536
537 #
538 # Aliases: Add here as many aliases as you need (with no limit). The format is 
539 # Alias fakename realname
540 #
541 # Note that if you include a trailing / on fakename then the server will
542 # require it to be present in the URL.  So "/icons" isn't aliased in this
543 # example, only "/icons/".  If the fakename is slash-terminated, then the 
544 # realname must also be slash terminated, and if the fakename omits the 
545 # trailing slash, the realname must also omit it.
546 #
547 # We include the /icons/ alias for FancyIndexed directory listings.  If you
548 # do not use FancyIndexing, you may comment this out.
549 #
550 Alias /icons/ "/bottlenecks/rubbos/app/apache2/icons/"
551
552 <Directory "/bottlenecks/rubbos/app/apache2/icons">
553     Options Indexes MultiViews
554     AllowOverride None
555     Order allow,deny
556     Allow from all
557 </Directory>
558
559 #
560 # This should be changed to the ServerRoot/manual/.  The alias provides
561 # the manual, even if you choose to move your DocumentRoot.  You may comment
562 # this out if you do not care for the documentation.
563 #
564 AliasMatch ^/manual(?:/(?:de|en|es|fr|ja|ko|ru|tr))?(/.*)?$ "/bottlenecks/rubbos/app/apache2/manual$1"
565
566 <Directory "/bottlenecks/rubbos/app/apache2/manual">
567     Options Indexes
568     AllowOverride None
569     Order allow,deny
570     Allow from all
571
572     <Files *.html>
573         SetHandler type-map
574     </Files>
575     # .tr is text/troff in mime.types!
576     <Files *.html.tr.utf8>
577         ForceType text/html
578     </Files>
579
580     SetEnvIf Request_URI ^/manual/(de|en|es|fr|ja|ko|ru|tr)/ prefer-language=$1
581     RedirectMatch 301 ^/manual(?:/(de|en|es|fr|ja|ko|ru|tr)){2,}(/.*)?$ /manual/$1$2
582 </Directory>
583
584 #
585 # ScriptAlias: This controls which directories contain server scripts.
586 # ScriptAliases are essentially the same as Aliases, except that
587 # documents in the realname directory are treated as applications and
588 # run by the server when requested rather than as documents sent to the client.
589 # The same rules about trailing "/" apply to ScriptAlias directives as to
590 # Alias.
591 #
592 ScriptAlias /cgi-bin/ "/bottlenecks/rubbos/app/apache2/cgi-bin/"
593
594 <IfModule mod_cgid.c>
595 #
596 # Additional to mod_cgid.c settings, mod_cgid has Scriptsock <path>
597 # for setting UNIX socket for communicating with cgid.
598 #
599 #Scriptsock            logs/cgisock
600 </IfModule>
601
602 #
603 # "/bottlenecks/rubbos/app/apache2/cgi-bin" should be changed to whatever your ScriptAliased
604 # CGI directory exists, if you have that configured.
605 #
606 <Directory "/bottlenecks/rubbos/app/apache2/cgi-bin">
607     AllowOverride None
608     Options None
609     Order allow,deny
610     Allow from all
611 </Directory>
612
613 #
614 # Redirect allows you to tell clients about documents which used to exist in
615 # your server's namespace, but do not anymore. This allows you to tell the
616 # clients where to look for the relocated document.
617 # Example:
618 # Redirect permanent /foo http://www.example.com/bar
619
620 #
621 # Directives controlling the display of server-generated directory listings.
622 #
623
624 #
625 # IndexOptions: Controls the appearance of server-generated directory
626 # listings.
627 #
628 IndexOptions FancyIndexing VersionSort
629
630 #
631 # AddIcon* directives tell the server which icon to show for different
632 # files or filename extensions.  These are only displayed for
633 # FancyIndexed directories.
634 #
635 AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip
636
637 AddIconByType (TXT,/icons/text.gif) text/*
638 AddIconByType (IMG,/icons/image2.gif) image/*
639 AddIconByType (SND,/icons/sound2.gif) audio/*
640 AddIconByType (VID,/icons/movie.gif) video/*
641
642 AddIcon /icons/binary.gif .bin .exe
643 AddIcon /icons/binhex.gif .hqx
644 AddIcon /icons/tar.gif .tar
645 AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv
646 AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip
647 AddIcon /icons/a.gif .ps .ai .eps
648 AddIcon /icons/layout.gif .html .shtml .htm .pdf
649 AddIcon /icons/text.gif .txt
650 AddIcon /icons/c.gif .c
651 AddIcon /icons/p.gif .pl .py
652 AddIcon /icons/f.gif .for
653 AddIcon /icons/dvi.gif .dvi
654 AddIcon /icons/uuencoded.gif .uu
655 AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl
656 AddIcon /icons/tex.gif .tex
657 AddIcon /icons/bomb.gif core
658
659 AddIcon /icons/back.gif ..
660 AddIcon /icons/hand.right.gif README
661 AddIcon /icons/folder.gif ^^DIRECTORY^^
662 AddIcon /icons/blank.gif ^^BLANKICON^^
663
664 #
665 # DefaultIcon is which icon to show for files which do not have an icon
666 # explicitly set.
667 #
668 DefaultIcon /icons/unknown.gif
669
670 #
671 # AddDescription allows you to place a short description after a file in
672 # server-generated indexes.  These are only displayed for FancyIndexed
673 # directories.
674 # Format: AddDescription "description" filename
675 #
676 #AddDescription "GZIP compressed document" .gz
677 #AddDescription "tar archive" .tar
678 #AddDescription "GZIP compressed tar archive" .tgz
679
680 #
681 # ReadmeName is the name of the README file the server will look for by
682 # default, and append to directory listings.
683 #
684 # HeaderName is the name of a file which should be prepended to
685 # directory indexes. 
686 ReadmeName README.html
687 HeaderName HEADER.html
688
689 #
690 # IndexIgnore is a set of filenames which directory indexing should ignore
691 # and not include in the listing.  Shell-style wildcarding is permitted.
692 #
693 IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t
694
695 #
696 # DefaultLanguage and AddLanguage allows you to specify the language of 
697 # a document. You can then use content negotiation to give a browser a 
698 # file in a language the user can understand.
699 #
700 # Specify a default language. This means that all data
701 # going out without a specific language tag (see below) will 
702 # be marked with this one. You probably do NOT want to set
703 # this unless you are sure it is correct for all cases.
704 #
705 # * It is generally better to not mark a page as 
706 # * being a certain language than marking it with the wrong
707 # * language!
708 #
709 # DefaultLanguage nl
710 #
711 # Note 1: The suffix does not have to be the same as the language
712 # keyword --- those with documents in Polish (whose net-standard
713 # language code is pl) may wish to use "AddLanguage pl .po" to
714 # avoid the ambiguity with the common suffix for perl scripts.
715 #
716 # Note 2: The example entries below illustrate that in some cases 
717 # the two character 'Language' abbreviation is not identical to 
718 # the two character 'Country' code for its country,
719 # E.g. 'Danmark/dk' versus 'Danish/da'.
720 #
721 # Note 3: In the case of 'ltz' we violate the RFC by using a three char
722 # specifier. There is 'work in progress' to fix this and get
723 # the reference data for rfc1766 cleaned up.
724 #
725 # Catalan (ca) - Croatian (hr) - Czech (cs) - Danish (da) - Dutch (nl)
726 # English (en) - Esperanto (eo) - Estonian (et) - French (fr) - German (de)
727 # Greek-Modern (el) - Hebrew (he) - Italian (it) - Japanese (ja)
728 # Korean (ko) - Luxembourgeois* (ltz) - Norwegian Nynorsk (nn)
729 # Norwegian (no) - Polish (pl) - Portugese (pt)
730 # Brazilian Portuguese (pt-BR) - Russian (ru) - Swedish (sv)
731 # Turkish (tr) - Simplified Chinese (zh-CN) - Spanish (es)
732 # Traditional Chinese (zh-TW)
733 #
734 AddLanguage ca .ca
735 AddLanguage cs .cz .cs
736 AddLanguage da .dk
737 AddLanguage de .de
738 AddLanguage el .el
739 AddLanguage en .en
740 AddLanguage eo .eo
741 AddLanguage es .es
742 AddLanguage et .et
743 AddLanguage fr .fr
744 AddLanguage he .he
745 AddLanguage hr .hr
746 AddLanguage it .it
747 AddLanguage ja .ja
748 AddLanguage ko .ko
749 AddLanguage ltz .ltz
750 AddLanguage nl .nl
751 AddLanguage nn .nn
752 AddLanguage no .no
753 AddLanguage pl .po
754 AddLanguage pt .pt
755 AddLanguage pt-BR .pt-br
756 AddLanguage ru .ru
757 AddLanguage sv .sv
758 AddLanguage tr .tr
759 AddLanguage zh-CN .zh-cn
760 AddLanguage zh-TW .zh-tw
761
762 #
763 # LanguagePriority allows you to give precedence to some languages
764 # in case of a tie during content negotiation.
765 #
766 # Just list the languages in decreasing order of preference. We have
767 # more or less alphabetized them here. You probably want to change this.
768 #
769 LanguagePriority en ca cs da de el eo es et fr he hr it ja ko ltz nl nn no pl pt pt-BR ru sv tr zh-CN zh-TW
770
771 #
772 # ForceLanguagePriority allows you to serve a result page rather than
773 # MULTIPLE CHOICES (Prefer) [in case of a tie] or NOT ACCEPTABLE (Fallback)
774 # [in case no accepted languages matched the available variants]
775 #
776 ForceLanguagePriority Prefer Fallback
777
778 #
779 # Commonly used filename extensions to character sets. You probably
780 # want to avoid clashes with the language extensions, unless you
781 # are good at carefully testing your setup after each change.
782 # See http://www.iana.org/assignments/character-sets for the
783 # official list of charset names and their respective RFCs.
784 #
785 AddCharset ISO-8859-1  .iso8859-1  .latin1
786 AddCharset ISO-8859-2  .iso8859-2  .latin2 .cen
787 AddCharset ISO-8859-3  .iso8859-3  .latin3
788 AddCharset ISO-8859-4  .iso8859-4  .latin4
789 AddCharset ISO-8859-5  .iso8859-5  .latin5 .cyr .iso-ru
790 AddCharset ISO-8859-6  .iso8859-6  .latin6 .arb
791 AddCharset ISO-8859-7  .iso8859-7  .latin7 .grk
792 AddCharset ISO-8859-8  .iso8859-8  .latin8 .heb
793 AddCharset ISO-8859-9  .iso8859-9  .latin9 .trk
794 AddCharset ISO-2022-JP .iso2022-jp .jis
795 AddCharset ISO-2022-KR .iso2022-kr .kis
796 AddCharset ISO-2022-CN .iso2022-cn .cis
797 AddCharset Big5        .Big5       .big5
798 # For russian, more than one charset is used (depends on client, mostly):
799 AddCharset WINDOWS-1251 .cp-1251   .win-1251
800 AddCharset CP866       .cp866
801 AddCharset KOI8-r      .koi8-r .koi8-ru
802 AddCharset KOI8-ru     .koi8-uk .ua
803 AddCharset ISO-10646-UCS-2 .ucs2
804 AddCharset ISO-10646-UCS-4 .ucs4
805 AddCharset UTF-8       .utf8
806
807 # The set below does not map to a specific (iso) standard
808 # but works on a fairly wide range of browsers. Note that
809 # capitalization actually matters (it should not, but it
810 # does for some browsers).
811 #
812 # See http://www.iana.org/assignments/character-sets
813 # for a list of sorts. But browsers support few.
814 #
815 AddCharset GB2312      .gb2312 .gb 
816 AddCharset utf-7       .utf7
817 AddCharset utf-8       .utf8
818 AddCharset big5        .big5 .b5
819 AddCharset EUC-TW      .euc-tw
820 AddCharset EUC-JP      .euc-jp
821 AddCharset EUC-KR      .euc-kr
822 AddCharset shift_jis   .sjis
823
824 #
825 # AddType allows you to add to or override the MIME configuration
826 # file mime.types for specific file types.
827 #
828 #AddType application/x-tar .tgz
829 #
830 # AddEncoding allows you to have certain browsers uncompress
831 # information on the fly. Note: Not all browsers support this.
832 # Despite the name similarity, the following Add* directives have nothing
833 # to do with the FancyIndexing customization directives above.
834 #
835 #AddEncoding x-compress .Z
836 #AddEncoding x-gzip .gz .tgz
837 #
838 # If the AddEncoding directives above are commented-out, then you
839 # probably should define those extensions to indicate media types:
840 #
841 AddType application/x-compress .Z
842 AddType application/x-gzip .gz .tgz
843
844 #
845 # AddHandler allows you to map certain file extensions to "handlers":
846 # actions unrelated to filetype. These can be either built into the server
847 # or added with the Action directive (see below)
848 #
849 # To use CGI scripts outside of ScriptAliased directories:
850 # (You will also need to add "ExecCGI" to the "Options" directive.)
851 #
852 #AddHandler cgi-script .cgi
853
854 #
855 # For files that include their own HTTP headers:
856 #
857 #AddHandler send-as-is asis
858
859 #
860 # For server-parsed imagemap files:
861 #
862 #AddHandler imap-file map
863
864 #
865 # For type maps (negotiated resources):
866 # (This is enabled by default to allow the Apache "It Worked" page
867 #  to be distributed in multiple languages.)
868 #
869 AddHandler type-map var
870
871 #
872 # Filters allow you to process content before it is sent to the client.
873 #
874 # To parse .shtml files for server-side includes (SSI):
875 # (You will also need to add "Includes" to the "Options" directive.)
876 #
877 #AddType text/html .shtml
878 #AddOutputFilter INCLUDES .shtml
879
880 #
881 # Action lets you define media types that will execute a script whenever
882 # a matching file is called. This eliminates the need for repeated URL
883 # pathnames for oft-used CGI file processors.
884 # Format: Action media/type /cgi-script/location
885 # Format: Action handler-name /cgi-script/location
886 #
887
888 #
889 # Customizable error responses come in three flavors:
890 # 1) plain text 2) local redirects 3) external redirects
891 #
892 # Some examples:
893 #ErrorDocument 500 "The server made a boo boo."
894 #ErrorDocument 404 /missing.html
895 #ErrorDocument 404 "/cgi-bin/missing_handler.pl"
896 #ErrorDocument 402 http://www.example.com/subscription_info.html
897 #
898
899 #
900 # Putting this all together, we can internationalize error responses.
901 #
902 # We use Alias to redirect any /error/HTTP_<error>.html.var response to
903 # our collection of by-error message multi-language collections.  We use 
904 # includes to substitute the appropriate text.
905 #
906 # You can modify the messages' appearance without changing any of the
907 # default HTTP_<error>.html.var files by adding the line:
908 #
909 #   Alias /error/include/ "/your/include/path/"
910 #
911 # which allows you to create your own set of files by starting with the
912 # /bottlenecks/rubbos/app/apache2/error/include/ files and copying them to /your/include/path/, 
913 # even on a per-VirtualHost basis.  The default include files will display
914 # your Apache version number and your ServerAdmin email address regardless
915 # of the setting of ServerSignature.
916 #
917 # The internationalized error documents require mod_alias, mod_include
918 # and mod_negotiation.  To activate them, uncomment the following 30 lines.
919
920 #    Alias /error/ "/bottlenecks/rubbos/app/apache2/error/"
921 #
922 #    <Directory "/bottlenecks/rubbos/app/apache2/error">
923 #        AllowOverride None
924 #        Options IncludesNoExec
925 #        AddOutputFilter Includes html
926 #        AddHandler type-map var
927 #        Order allow,deny
928 #        Allow from all
929 #        LanguagePriority en cs de es fr it ja ko nl pl pt-br ro sv tr
930 #        ForceLanguagePriority Prefer Fallback
931 #    </Directory>
932 #
933 #    ErrorDocument 400 /error/HTTP_BAD_REQUEST.html.var
934 #    ErrorDocument 401 /error/HTTP_UNAUTHORIZED.html.var
935 #    ErrorDocument 403 /error/HTTP_FORBIDDEN.html.var
936 #    ErrorDocument 404 /error/HTTP_NOT_FOUND.html.var
937 #    ErrorDocument 405 /error/HTTP_METHOD_NOT_ALLOWED.html.var
938 #    ErrorDocument 408 /error/HTTP_REQUEST_TIME_OUT.html.var
939 #    ErrorDocument 410 /error/HTTP_GONE.html.var
940 #    ErrorDocument 411 /error/HTTP_LENGTH_REQUIRED.html.var
941 #    ErrorDocument 412 /error/HTTP_PRECONDITION_FAILED.html.var
942 #    ErrorDocument 413 /error/HTTP_REQUEST_ENTITY_TOO_LARGE.html.var
943 #    ErrorDocument 414 /error/HTTP_REQUEST_URI_TOO_LARGE.html.var
944 #    ErrorDocument 415 /error/HTTP_UNSUPPORTED_MEDIA_TYPE.html.var
945 #    ErrorDocument 500 /error/HTTP_INTERNAL_SERVER_ERROR.html.var
946 #    ErrorDocument 501 /error/HTTP_NOT_IMPLEMENTED.html.var
947 #    ErrorDocument 502 /error/HTTP_BAD_GATEWAY.html.var
948 #    ErrorDocument 503 /error/HTTP_SERVICE_UNAVAILABLE.html.var
949 #    ErrorDocument 506 /error/HTTP_VARIANT_ALSO_VARIES.html.var
950
951
952 #
953 # The following directives modify normal HTTP response behavior to
954 # handle known problems with browser implementations.
955 #
956 BrowserMatch "Mozilla/2" nokeepalive
957 BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0
958 BrowserMatch "RealPlayer 4\.0" force-response-1.0
959 BrowserMatch "Java/1\.0" force-response-1.0
960 BrowserMatch "JDK/1\.0" force-response-1.0
961
962 #
963 # The following directive disables redirects on non-GET requests for
964 # a directory that does not include the trailing slash.  This fixes a 
965 # problem with Microsoft WebFolders which does not appropriately handle 
966 # redirects for folders with DAV methods.
967 # Same deal with Apple's DAV filesystem and Gnome VFS support for DAV.
968 #
969 BrowserMatch "Microsoft Data Access Internet Publishing Provider" redirect-carefully
970 BrowserMatch "MS FrontPage" redirect-carefully
971 BrowserMatch "^WebDrive" redirect-carefully
972 BrowserMatch "^WebDAVFS/1.[0123]" redirect-carefully
973 BrowserMatch "^gnome-vfs" redirect-carefully
974 BrowserMatch "^XML Spy" redirect-carefully
975 BrowserMatch "^Dreamweaver-WebDAV-SCM1" redirect-carefully
976
977 #
978 # Allow server status reports generated by mod_status,
979 # with the URL of http://servername/server-status
980 # Change the ".example.com" to match your domain to enable.
981 #
982 #<Location /server-status>
983 #    SetHandler server-status
984 #    Order deny,allow
985 #    Deny from all
986 #    Allow from .example.com
987 #</Location>
988
989 #
990 # Allow remote server configuration reports, with the URL of
991 #  http://servername/server-info (requires that mod_info.c be loaded).
992 # Change the ".example.com" to match your domain to enable.
993 #
994 #<Location /server-info>
995 #    SetHandler server-info
996 #    Order deny,allow
997 #    Deny from all
998 #    Allow from .example.com
999 #</Location>
1000
1001
1002 #
1003 # Bring in additional module-specific configurations
1004 #
1005 <IfModule mod_ssl.c>
1006     Include conf/ssl.conf
1007 </IfModule>
1008
1009
1010 ### Section 3: Virtual Hosts
1011 #
1012 # VirtualHost: If you want to maintain multiple domains/hostnames on your
1013 # machine you can setup VirtualHost containers for them. Most configurations
1014 # use only name-based virtual hosts so the server doesn't need to worry about
1015 # IP addresses. This is indicated by the asterisks in the directives below.
1016 #
1017 # Please see the documentation at 
1018 # <URL:http://httpd.apache.org/docs/2.0/vhosts/>
1019 # for further details before you try to setup virtual hosts.
1020 #
1021 # You may use the command line option '-S' to verify your virtual host
1022 # configuration.
1023
1024 #
1025 # Use name-based virtual hosting.
1026 #
1027 #NameVirtualHost *:80
1028
1029 #
1030 # VirtualHost example:
1031 # Almost any Apache directive may go into a VirtualHost container.
1032 # The first VirtualHost section is used for requests without a known
1033 # server name.
1034 #
1035 #<VirtualHost *:80>
1036 #    ServerAdmin webmaster@dummy-host.example.com
1037 #    DocumentRoot /www/docs/dummy-host.example.com
1038 #    ServerName dummy-host.example.com
1039 #    ErrorLog logs/dummy-host.example.com-error_log
1040 #    CustomLog logs/dummy-host.example.com-access_log common
1041 #</VirtualHost>