]> git.pld-linux.org Git - packages/apache.git/blame - apache-httpd.conf
This commit was manufactured by cvs2git to create tag 'apache-1_3_33-1'.
[packages/apache.git] / apache-httpd.conf
CommitLineData
4af76ed4 1##
2## httpd.conf -- Apache HTTP server configuration file
3##
4
882960bb 5##### Global Environment
4af76ed4 6# The directives in this section affect the overall operation of Apache,
882960bb 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.
4af76ed4 13
4af76ed4 14ServerType standalone
15
882960bb 16### PidFile
17# The file in which the server should record its process identification
18# number when it starts.
19
20PidFile /var/run/httpd.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
28Timeout 300
29KeepAliveTimeout 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
39KeepAlive On
40MaxKeepAliveRequests 100
41
98393628 42### ServerRoot
43# The top of the directory tree under which the server's configuration,
44# error, and log files are kept.
4af76ed4 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#
53ServerRoot "/usr"
54
98393628 55### LockFile
4af76ed4 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#
64LockFile /var/run/httpd.lock
65
98393628 66### ScoreBoardFile
888bfdde 67# File used to store internal server process information. Not all
98393628 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
4af76ed4 72ScoreBoardFile /var/run/httpd.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#
c96ad71b 83ResourceConfig /dev/null
84AccessConfig /dev/null
4af76ed4 85
4af76ed4 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#
99MinSpareServers 5
100MaxSpareServers 10
101
102#
103# Number of servers to start initially --- should be a reasonable ballpark
104# figure.
105#
106StartServers 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#
115MaxClients 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
888bfdde
JB
123# in the libraries. For these platforms, set to something like 10000
124# or so; a setting of 0 means unlimited.
4af76ed4 125#
888bfdde
JB
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
4af76ed4 131MaxRequestsPerChild 30
132
98393628 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
4af76ed4 137#Listen 12.34.56.78:80
98393628 138Listen 80
139
888bfdde
JB
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
98393628 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.
4af76ed4 150
4af76ed4 151#BindAddress *
152
4af76ed4 153
94286b8b 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]
162ClearModuleList
163AddModule mod_so.c
164
a6c476d8 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
94286b8b 172### Section 3: 'Main' server configuration
4af76ed4 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#
195Port 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#
98393628 201User http
4af76ed4 202Group 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#
209ServerAdmin 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#
888bfdde
JB
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#
4af76ed4 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#
234DocumentRoot "/home/httpd/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 />
98393628 245 Options FollowSymLinks
246 AllowOverride None
4af76ed4 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/httpd/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#
888bfdde 268 Options Indexes FollowSymLinks MultiViews
4af76ed4 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#
98393628 275 AllowOverride None
4af76ed4 276
277#
278# Controls who can get stuff from this server.
279#
98393628 280 Order allow,deny
281 Allow from all
4af76ed4 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#
288UserDir 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#
6a1d9423 294#<Directory /home/users/*/public_html>
4af76ed4 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>
888bfdde 301# <LimitExcept GET POST OPTIONS PROPFIND>
4af76ed4 302# Order deny,allow
303# Deny from all
48184c11 304# </LimitExcept>
4af76ed4 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#
c96ad71b 311<IfModule mod_dir.c>
888bfdde 312 DirectoryIndex index.html index.htm index.shtml index.cgi index.php
1301ccbc 313</IfModule>
4af76ed4 314
315#
316# AccessFileName: The name of the file to look for in each directory
317# for access control information.
318#
319AccessFileName .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#
888bfdde
JB
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">
98393628 333 Order allow,deny
334 Deny from all
48184c11 335 Satisfy All
4af76ed4 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#
354UseCanonicalName 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#
360TypesConfig /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#
371DefaultType 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>
7ba668f5 385 MIMEMagicFile /etc/httpd/magic
4af76ed4 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#
396HostnameLookups Off
397
4af76ed4 398#
399# The following directives define some format nicknames for use with
400# a CustomLog directive (see below).
401#
402LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
403LogFormat "%h %l %u %t \"%r\" %>s %b" common
404LogFormat "%{Referer}i -> %U" referer
405LogFormat "%{User-agent}i" agent
406
98393628 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#
414ErrorLog /var/log/httpd/error_log
4af76ed4 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#
422CustomLog /var/log/httpd/access_log common
4af76ed4 423CustomLog /var/log/httpd/referer_log referer
424CustomLog /var/log/httpd/agent_log agent
425
426#
98393628 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.
4af76ed4 430#
98393628 431LogLevel warn
4af76ed4 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#
440ServerSignature 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#
450Alias /icons/ "/home/httpd/icons/"
451
452<Directory "/home/httpd/icons">
7ba668f5 453 Options Indexes MultiViews
454 AllowOverride None
455 Order allow,deny
456 Allow from all
1d3d2b1b 457</Directory>
4af76ed4 458
77d023d2 459
460
461
462Alias /manual "/home/httpd/manual"
463
464<Directory "/home/httpd/manual">
465 Options Indexes MultiViews
466 AllowOverride None
467</Directory>
468
469
470
4af76ed4 471#
472# ScriptAlias: This controls which directories contain server scripts.
473# ScriptAliases are essentially the same as Aliases, except that
474# documents in the realname directory are treated as applications and
475# run by the server when requested rather than as documents sent to the client.
476# The same rules about trailing "/" apply to ScriptAlias directives as to
477# Alias.
478#
479ScriptAlias /cgi-bin/ "/home/httpd/cgi-bin/"
480
481#
482# "/home/httpd/cgi-bin" should be changed to whatever your ScriptAliased
483# CGI directory exists, if you have that configured.
484#
485<Directory "/home/httpd/cgi-bin">
7ba668f5 486 AllowOverride None
487 Options None
488 Order allow,deny
489 Allow from all
4af76ed4 490</Directory>
491
492#
493# Redirect allows you to tell clients about documents which used to exist in
494# your server's namespace, but do not anymore. This allows you to tell the
495# clients where to look for the relocated document.
496# Format: Redirect old-URI new-URL
497#
498
499#
500# Directives controlling the display of server-generated directory listings.
501#
502
4af76ed4 503#
504# AddLanguage allows you to specify the language of a document. You can
505# then use content negotiation to give a browser a file in a language
888bfdde
JB
506# it can understand.
507#
508# Note 1: The suffix does not have to be the same as the language
509# keyword --- those with documents in Polish (whose net-standard
510# language code is pl) may wish to use "AddLanguage pl .po" to
511# avoid the ambiguity with the common suffix for perl scripts.
512#
513# Note 2: The example entries below illustrate that in quite
514# some cases the two character 'Language' abbriviation is not
515# identical to the two character 'Country' code for its country,
516# E.g. 'Danmark/dk' versus 'Danish/da'.
517#
518# Note 3: In the case of 'ltz' we violate the RFC by using a three char
519# specifier. But there is 'work in progress' to fix this and get
520# the reference data for rfc1766 cleaned up.
521#
522# Danish (da) - Dutch (nl) - English (en) - Estonian (ee)
523# French (fr) - German (de) - Greek-Modern (el)
524# Italian (it) - Korean (kr) - Norwegian (no)
525# Portugese (pt) - Luxembourgeois* (ltz)
526# Spanish (es) - Swedish (sv) - Catalan (ca) - Czech(cz)
527# Polish (pl) - Brazilian Portuguese (pt-br) - Japanese (ja)
528# Russian (ru)
529#
530AddLanguage ca .ca
531AddLanguage cz .cz
532AddLanguage da .dk
4af76ed4 533AddLanguage de .de
888bfdde 534AddLanguage en .en
4af76ed4 535AddLanguage el .el
888bfdde
JB
536AddLanguage es .es
537AddLanguage et .ee
538AddLanguage fr .fr
539AddLanguage he .he
4af76ed4 540AddLanguage it .it
888bfdde
JB
541AddLanguage ja .ja
542AddLanguage kr .kr
543AddLanguage ltz .lu
544AddLanguage nl .nl
48184c11 545AddLanguage nn .nn
888bfdde 546AddLanguage no .no
4af76ed4 547AddLanguage pl .po
888bfdde
JB
548AddLanguage pt .pt
549AddLanguage pt-br .pt-br
550AddLanguage ru .ru
48184c11 551AddLanguage sv .sv
888bfdde 552AddLanguage tw .tw
48184c11 553AddLanguage zh-tw .tw
888bfdde
JB
554
555AddCharset Big5 .Big5 .big5
556AddCharset CP866 .cp866
557AddCharset ISO-8859-2 .iso-pl
558AddCharset ISO-8859-5 .iso-ru
559AddCharset ISO-8859-8 .iso8859-8
560AddCharset ISO-2022-JP .his
561AddCharset ISO-2022-KR .iso-kr
562AddCharset KOI8-R .koi8-r
563AddCharset UCS-2 .ucs2
564AddCharset UCS-4 .ucs4
565AddCharset UTF-8 .utf8
566AddCharset WINDOWS-1251 .cp-1251
567
4af76ed4 568#
569# LanguagePriority allows you to give precedence to some languages
570# in case of a tie during content negotiation.
571# Just list the languages in decreasing order of preference.
572#
573LanguagePriority en pl fr de
574
888bfdde
JB
575#
576# AddType allows you to tweak mime.types without actually editing it, or to
577# make certain files to be certain types.
578#
579# For example, the PHP 3.x module (not part of the Apache distribution - see
580# http://www.php.net) will typically use:
581#
582#AddType application/x-httpd-php3 .php3
583#AddType application/x-httpd-php3-source .phps
584#
585# And for PHP 4.x, use:
586#
587#AddType application/x-httpd-php .php
588#AddType application/x-httpd-php-source .phps
589#
590#AddType application/x-tar .tgz
591
4af76ed4 592#
593# AddHandler allows you to map certain file extensions to "handlers",
594# actions unrelated to filetype. These can be either built into the server
595# or added with the Action command (see below)
596#
597# If you want to use server side includes, or CGI outside
598# ScriptAliased directories, uncomment the following lines.
599#
600# To use CGI scripts:
601#
602AddHandler cgi-script .cgi
603
604#
605# To use server-parsed HTML files
606#
607AddType text/html .shtml
608AddHandler server-parsed .shtml
609
610#
611# Uncomment the following line to enable Apache's send-asis HTTP file
612# feature
613#
614AddHandler send-as-is asis
615
616#
617# If you wish to use server-parsed imagemap files, use
618#
619AddHandler imap-file map
620
621#
622# To enable type maps, you might want to use
623#
624AddHandler type-map var
625
626#
627# Action lets you define media types that will execute a script whenever
628# a matching file is called. This eliminates the need for repeated URL
629# pathnames for oft-used CGI file processors.
630# Format: Action media/type /cgi-script/location
631# Format: Action handler-name /cgi-script/location
632#
633
634#
635# MetaDir: specifies the name of the directory in which Apache can find
636# meta information files. These files contain additional HTTP headers
637# to include when sending the document
638#
639MetaDir .web
640
641#
642# MetaSuffix: specifies the file name suffix for the file containing the
643# meta information.
644#
645MetaSuffix .meta
646
647#
648# Customizable error response (Apache style)
649# these come in three flavors
650#
651# 1) plain text
652#ErrorDocument 500 "The server made a boo boo.
48184c11 653# n.b. the single leading (") marks it as text, it does not get output
4af76ed4 654#
655# 2) local redirects
656#ErrorDocument 404 /missing.html
657# to redirect to local URL /missing.html
658#ErrorDocument 404 /cgi-bin/missing_handler.pl
659# N.B.: You can redirect to a script or a document using server-side-includes.
660#
661# 3) external redirects
48184c11 662#ErrorDocument 402 http://some.other-server.com/subscription_info.html
4af76ed4 663# N.B.: Many of the environment variables associated with the original
664# request will *not* be available to such a script.
665
7745b7bc 666Alias /errordocs/ "/home/httpd/errordocs/"
667
52e4c839 668<Directory /home/httpd/errordocs/>
98393628 669 AllowOverride none
670 Options IncludesNoExec FollowSymLinks
52e4c839 671</Directory>
672
7745b7bc 673ErrorDocument 400 /errordocs/400.shtml
674ErrorDocument 401 /errordocs/401.shtml
675ErrorDocument 403 /errordocs/403.shtml
676ErrorDocument 404 /errordocs/404.shtml
677ErrorDocument 405 /errordocs/405.shtml
678ErrorDocument 406 /errordocs/406.shtml
679ErrorDocument 408 /errordocs/408.shtml
680ErrorDocument 410 /errordocs/410.shtml
681ErrorDocument 411 /errordocs/411.shtml
682ErrorDocument 414 /errordocs/414.shtml
683ErrorDocument 500 /errordocs/500.shtml
684ErrorDocument 503 /errordocs/503.shtml
685
4af76ed4 686# The following directives modify normal HTTP response behavior.
687# The first directive disables keepalive for Netscape 2.x and browsers that
688# spoof it. There are known problems with these browser implementations.
689# The second directive is for Microsoft Internet Explorer 4.0b2
690# which has a broken HTTP/1.1 implementation and does not properly
691# support keepalive when it is used on 301 or 302 (redirect) responses.
692#
693BrowserMatch "Mozilla/2" nokeepalive
694BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0
695
696#
697# The following directive disables HTTP/1.1 responses to browsers which
698# are in violation of the HTTP/1.0 spec by not being able to grok a
699# basic 1.1 response.
700#
701BrowserMatch "RealPlayer 4\.0" force-response-1.0
702BrowserMatch "Java/1\.0" force-response-1.0
703BrowserMatch "JDK/1\.0" force-response-1.0
704
4af76ed4 705#
706# Allow remote server configuration reports, with the URL of
48184c11
JB
707# http://servername/server-info (requires that mod_info.c be loaded).
708# Change the ".your-domain.com" to match your domain to enable.
4af76ed4 709#
710#<Location /server-info>
7ba668f5 711# SetHandler server-info
712# Order deny,allow
713# Deny from all
48184c11 714# Allow from .your-domain.com
4af76ed4 715#</Location>
716
717#
718# There have been reports of people trying to abuse an old bug from pre-1.1
719# days. This bug involved a CGI script distributed as a part of Apache.
720# By uncommenting these lines you can redirect these attacks to a logging
721# script on phf.apache.org. Or, you can record them yourself, using the script
722# support/phf_abuse_log.cgi.
723#
724#<Location /cgi-bin/phf*>
7ba668f5 725# Deny from all
726# ErrorDocument 403 http://phf.apache.org/phf_abuse_log.cgi
4af76ed4 727#</Location>
This page took 0.136902 seconds and 4 git commands to generate.