]> git.pld-linux.org Git - packages/apache1.git/blob - apache1-httpd.conf
- grrrr, fixed mod_autoindex.conf separation
[packages/apache1.git] / apache1-httpd.conf
1 ##
2 ## apache.conf -- Apache HTTP server configuration file
3 ##
4
5 ##### Global Environment
6 # The directives in this section affect the overall operation of Apache,
7 # such as the number of concurrent requests it can handle or where it can
8 # find its configuration files.
9
10 ### ServerType
11 # is either inetd, or standalone. Inetd mode is only supported on Unix
12 # platforms.
13
14 ServerType standalone
15
16 ### PidFile
17 # The file in which the server should record its process identification
18 # number when it starts.
19
20 PidFile /var/run/apache.pid
21
22 ### Timeout
23 # The number of seconds before receives and sends time out.
24 ### KeepAliveTimeout
25 # Number of seconds to wait for the next request from the same client on the
26 # same connection.
27
28 Timeout                 300
29 KeepAliveTimeout        15
30
31 ### KeepAlive
32 # Whether or not to allow persistent connections (more than one request per
33 # connection). Set to "Off" to deactivate.
34 ### MaxKeepAliveRequests
35 # The maximum number of requests to allow during a persistent connection.
36 # Set to 0 to allow an unlimited amount. We recommend you leave this number
37 # high, for maximum performance.
38
39 KeepAlive               On
40 MaxKeepAliveRequests    100
41
42 ### ServerRoot
43 # The top of the directory tree under which the server's configuration,
44 # error, and log files are kept.
45 #
46 # NOTE!  If you intend to place this on an NFS (or otherwise network)
47 # mounted filesystem then please read the LockFile documentation
48 # (available at <URL:http://www.apache.org/docs/mod/core.html#lockfile>);
49 # you will save yourself a lot of trouble.
50 #
51 # Do NOT add a slash at the end of the directory path.
52 #
53 ServerRoot "/usr"
54
55 ### LockFile
56 # The LockFile directive sets the path to the lockfile used when Apache
57 # is compiled with either USE_FCNTL_SERIALIZED_ACCEPT or
58 # USE_FLOCK_SERIALIZED_ACCEPT. This directive should normally be left at
59 # its default value. The main reason for changing it is if the logs
60 # directory is NFS mounted, since the lockfile MUST BE STORED ON A LOCAL
61 # DISK. The PID of the main server process is automatically appended to
62 # the filename. 
63 #
64 LockFile /var/run/apache.lock
65
66 ### ScoreBoardFile
67 # File used to store internal server process information. Not all
68 # architectures require this. But if yours does (you'll know because this
69 # file will be created when you run Apache) then you *must* ensure that no
70 # two invocations of Apache share the same scoreboard file.
71
72 ScoreBoardFile /var/run/apache.scoreboard
73
74 #
75 # In the standard configuration, the server will process this file,
76 # srm.conf, and access.conf in that order.  The latter two files are
77 # now distributed empty, as it is recommended that all directives
78 # be kept in a single file for simplicity.  The commented-out values
79 # below are the built-in defaults.  You can have the server ignore
80 # these files altogether by using "/dev/null" (for Unix) or
81 # "nul" (for Win32) for the arguments to the directives.
82 #
83 ResourceConfig  /dev/null
84 AccessConfig    /dev/null
85
86 #
87 # Server-pool size regulation.  Rather than making you guess how many
88 # server processes you need, Apache dynamically adapts to the load it
89 # sees --- that is, it tries to maintain enough server processes to
90 # handle the current load, plus a few spare servers to handle transient
91 # load spikes (e.g., multiple simultaneous requests from a single
92 # Netscape browser).
93 #
94 # It does this by periodically checking how many servers are waiting
95 # for a request.  If there are fewer than MinSpareServers, it creates
96 # a new spare.  If there are more than MaxSpareServers, some of the
97 # spares die off.  The default values are probably OK for most sites.
98 #
99 MinSpareServers 5
100 MaxSpareServers 10
101
102 #
103 # Number of servers to start initially --- should be a reasonable ballpark
104 # figure.
105 #
106 StartServers 5
107
108 #
109 # Limit on total number of servers running, i.e., limit on the number
110 # of clients who can simultaneously connect --- if this limit is ever
111 # reached, clients will be LOCKED OUT, so it should NOT BE SET TOO LOW.
112 # It is intended mainly as a brake to keep a runaway server from taking
113 # the system with it as it spirals down...
114 #
115 MaxClients 150
116
117 #
118 # MaxRequestsPerChild: the number of requests each child process is
119 # allowed to process before the child dies.  The child will exit so
120 # as to avoid problems after prolonged use when Apache (and maybe the
121 # libraries it uses) leak memory or other resources.  On most systems, this
122 # isn't really needed, but a few (such as Solaris) do have notable leaks
123 # in the libraries.  For these platforms, set to something like 10000
124 # or so; a setting of 0 means unlimited.
125 #
126 # NOTE: This value does not include keepalive requests after the initial
127 #       request per connection. For example, if a child process handles
128 #       an initial request and 10 subsequent "keptalive" requests, it
129 #       would only count as 1 request towards this limit.
130
131 MaxRequestsPerChild 30
132
133 ### Listen
134 # Allows you to bind Apache to specific IP addresses and/or ports, in
135 # addition to the default. See also the <VirtualHost> directive.
136
137 #Listen 12.34.56.78:80
138 Listen 80
139
140 # Listen can take two arguments.
141 # (this is an extension for supporting IPv6 addresses)
142 #Listen :: 80
143 #Listen 0.0.0.0 80
144
145 ### BindAddress
146 # You can support virtual hosts with this option. This directive is used to
147 # tell the server which IP address to listen to. It can either contain "*",
148 # an IP address, or a fully qualified Internet domain name. See also the
149 # <VirtualHost> and Listen directives.
150
151 #BindAddress *
152
153
154 ### Section 2: Dynamic Shared Object (DSO) Support
155 #
156 # Example:
157 # LoadModule foo_module libexec/mod_foo.so
158
159 #  Reconstruction of the complete module list from all available modules
160 #  (static and shared ones) to achieve correct module execution order.
161 #  [WHENEVER YOU CHANGE THE LOADMODULE SECTION ABOVE UPDATE THIS, TOO]
162 ClearModuleList
163 AddModule mod_so.c
164
165 ### ExtendedStatus
166 # controls whether Apache will generate "full" status information
167 # (ExtendedStatus On) or just basic information (ExtendedStatus Off) when
168 # the "server-status" handler is called. The default is Off.
169
170 #ExtendedStatus On
171
172 ### Section 3: 'Main' server configuration
173 #
174 # The directives in this section set up the values used by the 'main'
175 # server, which responds to any requests that aren't handled by a
176 # <VirtualHost> definition.  These values also provide defaults for
177 # any <VirtualHost> containers you may define later in the file.
178 #
179 # All of these directives may appear inside <VirtualHost> containers,
180 # in which case these default settings will be overridden for the
181 # virtual host being defined.
182 #
183
184 #
185 # If your ServerType directive (set earlier in the 'Global Environment'
186 # section) is set to "inetd", the next few directives don't have any
187 # effect since their settings are defined by the inetd configuration.
188 # Skip ahead to the ServerAdmin directive.
189 #
190
191 #
192 # Port: The port to which the standalone server listens. For
193 # ports < 1023, you will need httpd to be run as root initially.
194 #
195 Port 80
196
197 #
198 # If you wish httpd to run as a different user or group, you must run
199 # httpd as root initially and it will switch.  
200 #
201 User  http
202 Group http
203
204 #
205 # ServerAdmin: Your address, where problems with the server should be
206 # e-mailed.  This address appears on some server-generated pages, such
207 # as error documents.
208 #
209 ServerAdmin admin@your_domain.org
210
211 #
212 # ServerName allows you to set a host name which is sent back to clients for
213 # your server if it's different than the one the program would get (i.e., use
214 # "www" instead of the host's real name).
215 #
216 # Note: You cannot just invent host names and hope they work. The name you 
217 # define here must be a valid DNS name for your host. If you don't understand
218 # this, ask your network administrator.
219 # If your host doesn't have a registered DNS name, enter its IP address here.
220 # You will have to access it by its address (e.g., http://123.45.67.89/)
221 # anyway, and this will make redirections work in a sensible way.
222 #
223 # 127.0.0.1 is the TCP/IP local loop-back address, often named localhost. Your
224 # machine always knows itself by this address. If you use Apache strictly for
225 # local testing and development, you may use 127.0.0.1 as the server name.
226 #
227 #ServerName new.host.name
228
229 #
230 # DocumentRoot: The directory out of which you will serve your
231 # documents. By default, all requests are taken from this directory, but
232 # symbolic links and aliases may be used to point to other locations.
233 #
234 DocumentRoot "/home/services/apache/html"
235
236 #
237 # Each directory to which Apache has access, can be configured with respect
238 # to which services and features are allowed and/or disabled in that
239 # directory (and its subdirectories). 
240 #
241 # First, we configure the "default" to be a very restrictive set of 
242 # permissions.  
243 #
244 <Directory />
245         Options FollowSymLinks
246         AllowOverride None
247 </Directory>
248
249 #
250 # Note that from this point forward you must specifically allow
251 # particular features to be enabled - so if something's not working as
252 # you might expect, make sure that you have specifically enabled it
253 # below.
254 #
255
256 #
257 # This should be changed to whatever you set DocumentRoot to.
258 #
259 <Directory "/home/services/apache/html">
260
261 #
262 # This may also be "None", "All", or any combination of "Indexes",
263 # "Includes", "FollowSymLinks", "ExecCGI", or "MultiViews".
264 #
265 # Note that "MultiViews" must be named *explicitly* --- "Options All"
266 # doesn't give it to you.
267 #
268         Options Indexes FollowSymLinks MultiViews
269
270 #
271 # This controls which options the .htaccess files in directories can
272 # override. Can also be "All", or any combination of "Options", "FileInfo", 
273 # "AuthConfig", and "Limit"
274 #
275         AllowOverride None
276
277 #
278 # Controls who can get stuff from this server.
279 #
280         Order allow,deny
281         Allow from all
282 </Directory>
283
284 #
285 # UserDir: The name of the directory which is appended onto a user's home
286 # directory if a ~user request is received.
287 #
288 UserDir public_html
289
290 #
291 # Control access to UserDir directories.  The following is an example
292 # for a site where these directories are restricted to read-only.
293 #
294 #<Directory /home/users/*/public_html>
295 #    AllowOverride FileInfo AuthConfig Limit
296 #    Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
297 #    <Limit GET POST OPTIONS PROPFIND>
298 #        Order allow,deny
299 #        Allow from all
300 #    </Limit>
301 #    <LimitExcept GET POST OPTIONS PROPFIND>
302 #        Order deny,allow
303 #        Deny from all
304 #    </LimitExcept>
305 #</Directory>
306
307 #
308 # DirectoryIndex: Name of the file or files to use as a pre-written HTML
309 # directory index.  Separate multiple entries with spaces.
310 #
311 <IfModule mod_dir.c>
312         DirectoryIndex index.html index.htm index.shtml index.cgi index.php
313 </IfModule>
314
315 #
316 # AccessFileName: The name of the file to look for in each directory
317 # for access control information.
318 #
319 AccessFileName .htaccess
320
321 #
322 # The following lines prevent .htaccess files from being viewed by
323 # Web clients.  Since .htaccess files often contain authorization
324 # information, access is disallowed for security reasons.  Comment
325 # these lines out if you want Web visitors to see the contents of
326 # .htaccess files.  If you change the AccessFileName directive above,
327 # be sure to make the corresponding changes here.
328 #
329 # Also, folks tend to use names such as .htpasswd for password
330 # files, so this will protect those as well.
331 #
332 <Files ~ "^\.ht">
333         Order allow,deny
334         Deny from all
335         Satisfy All
336 </Files>
337
338 #
339 # CacheNegotiatedDocs: By default, Apache sends "Pragma: no-cache" with each
340 # document that was negotiated on the basis of content. This asks proxy
341 # servers not to cache the document. Uncommenting the following line disables
342 # this behavior, and proxies will be allowed to cache the documents.
343 #
344 #CacheNegotiatedDocs
345
346 #
347 # UseCanonicalName:  (new for 1.3)  With this setting turned on, whenever
348 # Apache needs to construct a self-referencing URL (a URL that refers back
349 # to the server the response is coming from) it will use ServerName and
350 # Port to form a "canonical" name.  With this setting off, Apache will
351 # use the hostname:port that the client supplied, when possible.  This
352 # also affects SERVER_NAME and SERVER_PORT in CGI scripts.
353 #
354 UseCanonicalName On
355
356 #
357 # TypesConfig describes where the mime.types file (or equivalent) is
358 # to be found. /etc/mime.types is provided by mailcap package.
359 #
360 TypesConfig /etc/mime.types
361
362 #
363 # DefaultType is the default MIME type the server will use for a document
364 # if it cannot otherwise determine one, such as from filename extensions.
365 # If your server contains mostly text or HTML documents, "text/plain" is
366 # a good value.  If most of your content is binary, such as applications
367 # or images, you may want to use "application/octet-stream" instead to
368 # keep browsers from trying to display binary files as though they are
369 # text.
370 #
371 DefaultType text/plain
372
373 #
374 # The mod_mime_magic module allows the server to use various hints from the
375 # contents of the file itself to determine its type.  The MIMEMagicFile
376 # directive tells the module where the hint definitions are located.
377 # mod_mime_magic is not part of the default server (you have to add
378 # it yourself with a LoadModule [see the DSO paragraph in the 'Global
379 # Environment' section], or recompile the server and include mod_mime_magic
380 # as part of the configuration), so it's enclosed in an <IfModule> container.
381 # This means that the MIMEMagicFile directive will only be processed if the
382 # module is part of the server.
383 #
384 <IfModule mod_mime_magic.c>
385         MIMEMagicFile /etc/apache/magic
386 </IfModule>
387
388 #
389 # HostnameLookups: Log the names of clients or just their IP addresses
390 # e.g., www.apache.org (on) or 204.62.129.132 (off).
391 # The default is off because it'd be overall better for the net if people
392 # had to knowingly turn this feature on, since enabling it means that
393 # each client request will result in AT LEAST one lookup request to the
394 # nameserver.
395 #
396 HostnameLookups Off
397
398 #
399 # The following directives define some format nicknames for use with
400 # a CustomLog directive (see below).
401 #
402 LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
403 LogFormat "%h %l %u %t \"%r\" %>s %b" common
404 LogFormat "%{Referer}i -> %U" referer
405 LogFormat "%{User-agent}i" agent
406
407 #
408 # ErrorLog: The location of the error log file.
409 # If you do not specify an ErrorLog directive within a <VirtualHost>
410 # container, error messages relating to that virtual host will be
411 # logged here.  If you *do* define an error logfile for a <VirtualHost>
412 # container, that host's errors will be logged there and not here.
413 #
414 ErrorLog /var/log/apache/error_log
415 #
416 # The location and format of the access logfile (Common Logfile Format).
417 # If you do not define any access logfiles within a <VirtualHost>
418 # container, they will be logged here.  Contrariwise, if you *do*
419 # define per-<VirtualHost> access logfiles, transactions will be
420 # logged therein and *not* in this file.
421 #
422 CustomLog /var/log/apache/access_log common
423 CustomLog /var/log/apache/referer_log referer
424 CustomLog /var/log/apache/agent_log agent
425
426 #
427 # LogLevel: Control the number of messages logged to the error_log.
428 # Possible values include: debug, info, notice, warn, error, crit,
429 # alert, emerg.
430 #
431 LogLevel warn
432
433 #
434 # Optionally add a line containing the server version and virtual host
435 # name to server-generated pages (error documents, FTP directory listings,
436 # mod_status and mod_info output etc., but not CGI generated documents).
437 # Set to "EMail" to also include a mailto: link to the ServerAdmin.
438 # Set to one of:  On | Off | EMail
439 #
440 ServerSignature Email
441
442 #
443 # Aliases: Add here as many aliases as you need (with no limit). The format is 
444 # Alias fakename realname
445 #
446 # Note that if you include a trailing / on fakename then the server will
447 # require it to be present in the URL.  So "/icons" isn't aliased in this
448 # example, only "/icons/"..
449 #
450 Alias /icons/ "/home/services/apache/icons/"
451
452 <Directory "/home/services/apache/icons">
453         Options Indexes MultiViews
454         AllowOverride None
455         Order allow,deny
456         Allow from all
457 </Directory>
458
459 Alias /manual/ "/usr/share/apache1-manual/"
460
461 <Directory "/usr/share/apache1-manual">
462         Options Indexes MultiViews
463         AllowOverride None
464         order deny,allow
465         deny from all
466         allow from 127.0.0.1
467 </Directory>
468
469 #
470 # ScriptAlias: This controls which directories contain server scripts.
471 # ScriptAliases are essentially the same as Aliases, except that
472 # documents in the realname directory are treated as applications and
473 # run by the server when requested rather than as documents sent to the client.
474 # The same rules about trailing "/" apply to ScriptAlias directives as to
475 # Alias.
476 #
477 ScriptAlias /cgi-bin/ "/home/services/apache/cgi-bin/"
478
479 #
480 # "/home/services/apache/cgi-bin" should be changed to whatever your
481 # ScriptAliased CGI directory exists, if you have that configured.
482 #
483 <Directory "/home/services/apache/cgi-bin">
484         AllowOverride None
485         Options None
486         Order allow,deny
487         Allow from all
488 </Directory>
489
490 #
491 # Redirect allows you to tell clients about documents which used to exist in
492 # your server's namespace, but do not anymore. This allows you to tell the
493 # clients where to look for the relocated document.
494 # Format: Redirect old-URI new-URL
495 #
496
497 #
498 # AddEncoding allows you to have certain browsers (Mosaic/X 2.1+) uncompress
499 # information on the fly. Note: Not all browsers support this.
500 # Despite the name similarity, the following Add* directives have nothing
501 # to do with the FancyIndexing customization directives above.
502 #
503 AddEncoding x-compress Z
504 AddEncoding x-gzip gz
505
506 #
507 # AddLanguage allows you to specify the language of a document. You can
508 # then use content negotiation to give a browser a file in a language
509 # it can understand.
510 #
511 # Note 1: The suffix does not have to be the same as the language
512 # keyword --- those with documents in Polish (whose net-standard
513 # language code is pl) may wish to use "AddLanguage pl .po" to
514 # avoid the ambiguity with the common suffix for perl scripts.
515 #
516 # Note 2: The example entries below illustrate that in quite
517 # some cases the two character 'Language' abbriviation is not
518 # identical to the two character 'Country' code for its country,
519 # E.g. 'Danmark/dk' versus 'Danish/da'.
520 #
521 # Note 3: In the case of 'ltz' we violate the RFC by using a three char
522 # specifier. But there is 'work in progress' to fix this and get
523 # the reference data for rfc1766 cleaned up.
524 #
525 # Danish (da) - Dutch (nl) - English (en) - Estonian (ee)
526 # French (fr) - German (de) - Greek-Modern (el)
527 # Italian (it) - Korean (kr) - Norwegian (no)
528 # Portugese (pt) - Luxembourgeois* (ltz)
529 # Spanish (es) - Swedish (sv) - Catalan (ca) - Czech(cz)
530 # Polish (pl) - Brazilian Portuguese (pt-br) - Japanese (ja)
531 # Russian (ru)
532 #
533 AddLanguage ca .ca
534 AddLanguage cz .cz
535 AddLanguage da .dk
536 AddLanguage de .de
537 AddLanguage en .en
538 AddLanguage el .el
539 AddLanguage es .es
540 AddLanguage et .ee
541 AddLanguage fr .fr
542 AddLanguage he .he
543 AddLanguage it .it
544 AddLanguage ja .ja
545 AddLanguage kr .kr
546 AddLanguage ltz .lu
547 AddLanguage nl .nl
548 AddLanguage nn .nn
549 AddLanguage no .no
550 AddLanguage pl .po
551 AddLanguage pt .pt
552 AddLanguage pt-br .pt-br
553 AddLanguage ru .ru
554 AddLanguage sv .sv
555 AddLanguage tw .tw
556 AddLanguage zh-tw .tw
557
558 AddCharset Big5 .Big5 .big5
559 AddCharset CP866 .cp866
560 AddCharset ISO-8859-2 .iso-pl
561 AddCharset ISO-8859-5 .iso-ru
562 AddCharset ISO-8859-8 .iso8859-8
563 AddCharset ISO-2022-JP .his
564 AddCharset ISO-2022-KR .iso-kr
565 AddCharset KOI8-R .koi8-r
566 AddCharset UCS-2 .ucs2
567 AddCharset UCS-4 .ucs4
568 AddCharset UTF-8 .utf8
569 AddCharset WINDOWS-1251 .cp-1251
570
571 #
572 # LanguagePriority allows you to give precedence to some languages
573 # in case of a tie during content negotiation.
574 # Just list the languages in decreasing order of preference.
575 #
576 LanguagePriority en pl fr de
577
578 #
579 # AddType allows you to tweak mime.types without actually editing it, or to
580 # make certain files to be certain types.
581 #
582 # For example, the PHP 3.x module (not part of the Apache distribution - see
583 # http://www.php.net) will typically use:
584 #
585 #AddType application/x-httpd-php3 .php3
586 #AddType application/x-httpd-php3-source .phps
587 #
588 # And for PHP 4.x, use:
589 #
590 #AddType application/x-httpd-php .php
591 #AddType application/x-httpd-php-source .phps
592 #
593 #AddType application/x-tar .tgz
594
595 #
596 # AddHandler allows you to map certain file extensions to "handlers",
597 # actions unrelated to filetype. These can be either built into the server
598 # or added with the Action command (see below)
599 #
600 # If you want to use server side includes, or CGI outside
601 # ScriptAliased directories, uncomment the following lines.
602 #
603 # To use CGI scripts:
604 #
605 AddHandler cgi-script .cgi
606
607 #
608 # To use server-parsed HTML files
609 #
610 AddType text/html .shtml
611 AddHandler server-parsed .shtml
612
613 #
614 # Uncomment the following line to enable Apache's send-asis HTTP file
615 # feature
616 #
617 AddHandler send-as-is asis
618
619 #
620 # If you wish to use server-parsed imagemap files, use
621 #
622 AddHandler imap-file map
623
624 #
625 # To enable type maps, you might want to use
626 #
627 AddHandler type-map var
628
629 #
630 # Action lets you define media types that will execute a script whenever
631 # a matching file is called. This eliminates the need for repeated URL
632 # pathnames for oft-used CGI file processors.
633 # Format: Action media/type /cgi-script/location
634 # Format: Action handler-name /cgi-script/location
635 #
636
637 #
638 # MetaDir: specifies the name of the directory in which Apache can find
639 # meta information files. These files contain additional HTTP headers
640 # to include when sending the document
641 #
642 MetaDir .web
643
644 #
645 # MetaSuffix: specifies the file name suffix for the file containing the
646 # meta information.
647 #
648 MetaSuffix .meta
649
650 #
651 # Customizable error response (Apache style)
652 #  these come in three flavors
653 #
654 #    1) plain text
655 #ErrorDocument 500 "The server made a boo boo.
656 #  n.b.  the single leading (") marks it as text, it does not get output
657 #
658 #    2) local redirects
659 #ErrorDocument 404 /missing.html
660 #  to redirect to local URL /missing.html
661 #ErrorDocument 404 /cgi-bin/missing_handler.pl
662 #  N.B.: You can redirect to a script or a document using server-side-includes.
663 #
664 #    3) external redirects
665 #ErrorDocument 402 http://some.other-server.com/subscription_info.html
666 #  N.B.: Many of the environment variables associated with the original
667 #  request will *not* be available to such a script.
668
669 Alias /errordocs/ "/home/services/apache/errordocs/"
670
671 <Directory /home/services/apache/errordocs/>
672         AllowOverride none
673         Options IncludesNoExec FollowSymLinks
674 </Directory>
675
676 ErrorDocument 400       /errordocs/400.shtml
677 ErrorDocument 401       /errordocs/401.shtml
678 ErrorDocument 403       /errordocs/403.shtml
679 ErrorDocument 404       /errordocs/404.shtml
680 ErrorDocument 405       /errordocs/405.shtml
681 ErrorDocument 406       /errordocs/406.shtml
682 ErrorDocument 408       /errordocs/408.shtml
683 ErrorDocument 410       /errordocs/410.shtml
684 ErrorDocument 411       /errordocs/411.shtml
685 ErrorDocument 414       /errordocs/414.shtml
686 ErrorDocument 500       /errordocs/500.shtml
687 ErrorDocument 503       /errordocs/503.shtml
688
689 # The following directives modify normal HTTP response behavior.
690 # The first directive disables keepalive for Netscape 2.x and browsers that
691 # spoof it. There are known problems with these browser implementations.
692 # The second directive is for Microsoft Internet Explorer 4.0b2
693 # which has a broken HTTP/1.1 implementation and does not properly
694 # support keepalive when it is used on 301 or 302 (redirect) responses.
695 #
696 BrowserMatch "Mozilla/2" nokeepalive
697 BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0
698
699 #
700 # The following directive disables HTTP/1.1 responses to browsers which
701 # are in violation of the HTTP/1.0 spec by not being able to grok a
702 # basic 1.1 response.
703 #
704 BrowserMatch "RealPlayer 4\.0" force-response-1.0
705 BrowserMatch "Java/1\.0" force-response-1.0
706 BrowserMatch "JDK/1\.0" force-response-1.0
707
708 #
709 # Allow remote server configuration reports, with the URL of
710 # http://servername/server-info (requires that mod_info.c be loaded).
711 # Change the ".your-domain.com" to match your domain to enable.
712 #
713 #<Location /server-info>
714 #       SetHandler server-info
715 #       Order deny,allow
716 #       Deny from all
717 #       Allow from .your-domain.com
718 #</Location>
719
720 #
721 # There have been reports of people trying to abuse an old bug from pre-1.1
722 # days.  This bug involved a CGI script distributed as a part of Apache.
723 # By uncommenting these lines you can redirect these attacks to a logging 
724 # script on phf.apache.org.  Or, you can record them yourself, using the script
725 # support/phf_abuse_log.cgi.
726 #
727 #<Location /cgi-bin/phf*>
728 #       Deny from all
729 #       ErrorDocument 403 http://phf.apache.org/phf_abuse_log.cgi
730 #</Location>
This page took 0.087827 seconds and 4 git commands to generate.