This directive enables operating system specific optimizations for a
listening socket by the Protocol type. The basic premise is for the
kernel to not send a socket to the server process until either data
is received or an entire HTTP Request is buffered. Only
FreeBSD's Accept Filters and Linux's more primitive
TCP_DEFER_ACCEPT
are currently supported.
The default values on FreeBSD are:
The httpready
accept filter buffers entire HTTP requests at
the kernel level. Once an entire request is received, the kernel then
sends it to the server. See the
accf_http(9) man page for more details. Since HTTPS requests are
encrypted only the
accf_data(9) filter is used.
The default values on Linux are:
Linux's TCP_DEFER_ACCEPT
does not support buffering http
requests. Any value besides none
will enable
TCP_DEFER_ACCEPT
on that listener. For more details
see the Linux
tcp(7) man page.
Using none
for an argument will disable any accept filters
for that protocol. This is useful for protocols that require a server
send data first, such as nntp
:
This directive controls whether requests that contain trailing
pathname information that follows an actual filename (or
non-existent file in an existing directory) will be accepted or
rejected. The trailing pathname information can be made
available to scripts in the PATH_INFO
environment
variable.
For example, assume the location /test/
points to
a directory that contains only the single file
here.html
. Then requests for
/test/here.html/more
and
/test/nothere.html/more
both collect
/more
as PATH_INFO
.
The three possible arguments for the
Off
/test/here.html/more
in the above example will return
a 404 NOT FOUND error.On
/test/here.html/more
will be accepted if
/test/here.html
maps to a valid file.Default
PATH_INFO
requests. Handlers that serve scripts, such as cgi-script and isapi-handler, generally accept
PATH_INFO
by default.The primary purpose of the AcceptPathInfo
directive is to allow you to override the handler's choice of
accepting or rejecting PATH_INFO
. This override is required,
for example, when you use a filter, such
as INCLUDES, to generate content
based on PATH_INFO
. The core handler would usually reject
the request, so you can use the following configuration to enable
such a script:
While processing a request the server looks for the first existing configuration file from this list of names in every directory of the path to the document, if distributed configuration files are enabled for that directory. For example:
before returning the document
/usr/local/web/index.html
, the server will read
/.acl
, /usr/.acl
,
/usr/local/.acl
and /usr/local/web/.acl
for directives, unless they have been disabled with
text/plain
or text/html
This directive specifies a default value for the media type
charset parameter (the name of a character encoding) to be added
to a response if and only if the response's content-type is either
text/plain
or text/html
. This should override
any charset specified in the body of the response via a META
element, though the exact behavior is often dependent on the user's client
configuration. A setting of AddDefaultCharset Off
disables this functionality. AddDefaultCharset On
enables
a default charset of iso-8859-1
. Any other value is assumed
to be the charset to be used, which should be one of the
IANA registered
charset values for use in MIME media types.
For example:
This directive activates a particular output filter for a request depending on the
response
The following example uses the DEFLATE
filter, which
is provided by text/html
or text/plain
before it is sent
to the client.
If you want the content to be processed by more than one filter, their
names have to be separated by semicolons. It's also possible to use one
The configuration below causes all script output labeled as
text/html
to be processed at first by the
INCLUDES
filter and then by the DEFLATE
filter.
Enabling filters with
However, if you want to make sure, that the filters will be
applied, assign the content type to a resource explicitly, for
example with
The %2F
for /
and additionally %5C
for \
on according systems)
to be used. Normally such URLs are refused with a 404 (Not found) error.
Turning On
is
mostly useful when used in conjunction with PATH_INFO
.
Allowing encoded slashes does not imply decoding.
Occurrences of %2F
or %5C
(only on
according systems) will be left as such in the otherwise decoded URL
string.
.htaccess
filesWhen the server finds an .htaccess
file (as
specified by
When this directive is set to None
, then
.htaccess files are completely ignored.
In this case, the server will not even attempt to read
.htaccess
files in the filesystem.
When this directive is set to All
, then any
directive which has the .htaccess Context is allowed in
.htaccess
files.
The directive-type can be one of the following groupings of directives.
Example:
In the example above all directives that are neither in the group
AuthConfig
nor Indexes
cause an internal
server error.
For security and performance reasons, do not set
AllowOverride
to anything other than None
in your <Directory />
block. Instead, find (or
create) the <Directory>
block that refers to the
directory where you're actually planning to place a
.htaccess
file.
This directive is used to control how Apache finds the
interpreter used to run CGI scripts. For example, setting
CGIMapExtension sys:\foo.nlm .foo
will
cause all CGI script files with a .foo
extension to
be passed to the FOO interpreter.
Content-MD5
HTTP Response
headersThis directive enables the generation of
Content-MD5
headers as defined in RFC1864
respectively RFC2616.
MD5 is an algorithm for computing a "message digest" (sometimes called "fingerprint") of arbitrary-length data, with a high degree of confidence that any alterations in the data will be reflected in alterations in the message digest.
The Content-MD5
header provides an end-to-end
message integrity check (MIC) of the entity-body. A proxy or
client may check this header for detecting accidental
modification of the entity-body in transit. Example header:
Note that this can cause performance problems on your server since the message digest is computed on every request (the values are not cached).
Content-MD5
is only sent for documents served
by the
none
is available in Apache 2.2.7 and laterThere will be times when the server is asked to provide a
document whose type cannot be determined by its
The server SHOULD inform the client of the content-type of the
document. If the server is unable to determine this by normal
means, it will set it to the configured
DefaultType
. For example:
would be appropriate for a directory which contained many GIF
images with filenames missing the .gif
extension.
In cases where it can neither be determined by the server nor the administrator (e.g. a proxy), it is preferable to omit the MIME type altogether rather than provide information that may be false. This can be accomplished using
DefaultType None
is only available in httpd-2.2.7 and later.
Note that unlike
Equivalent to passing the -D
argument to
This directive can be used to toggle the use of -D
arguments in any startup scripts.
</Directory>
are used to enclose a group of
directives that will apply only to the named directory and
sub-directories of that directory. Any directive that is allowed
in a directory context may be used. Directory-path is
either the full path to a directory, or a wild-card string using
Unix shell-style matching. In a wild-card string, ?
matches
any single character, and *
matches any sequences of
characters. You may also use []
character ranges. None
of the wildcards match a `/' character, so <Directory
/*/public_html>
will not match
/home/user/public_html
, but <Directory
/home/*/public_html>
will match. Example:
Be careful with the directory-path arguments:
They have to literally match the filesystem path which Apache uses
to access the files. Directives applied to a particular
<Directory>
will not apply to files accessed from
that same directory via a different path, such as via different symbolic
links.
~
character. For example:
would match directories in /www/
that consisted of
three numbers.
If multiple (non-regular expression)
for access to the document /home/web/dir/doc.html
the steps are:
AllowOverride None
(disabling .htaccess
files).AllowOverride FileInfo
(for
directory /home
).FileInfo
directives in
/home/.htaccess
, /home/web/.htaccess
and
/home/web/dir/.htaccess
in that order.Regular expressions are not considered until after all of the normal sections have been applied. Then all of the regular expressions are tested in the order they appeared in the configuration file. For example, with
the regular expression section won't be considered until after
all normal .htaccess
files have been applied. Then the regular
expression will match on /home/abc/public_html/abc
and
the corresponding
Note that the default Apache access for
<Directory />
is Allow from All
.
This means that Apache will serve any file mapped from an URL. It is
recommended that you change this with a block such
as
and then override this for directories you want accessible. See the Security Tips page for more details.
The directory sections occur in the httpd.conf
file.
</DirectoryMatch>
are used to enclose a group
of directives which will apply only to the named directory and
sub-directories of that directory, the same as
would match directories in /www/
that consisted of three
numbers.
This directive sets the directory from which
then an access to
http://www.my.host.com/index.html
refers to
/usr/web/index.html
. If the directory-path is
not absolute then it is assumed to be relative to the
The
This directive controls whether the
This memory-mapping sometimes yields a performance improvement. But in some environments, it is better to disable the memory-mapping to prevent operational problems:
For server configurations that are vulnerable to these problems, you should disable memory-mapping of delivered files by specifying:
For NFS mounted files, this feature may be disabled explicitly for the offending files by specifying:
This directive controls whether
This sendfile mechanism avoids separate read and send operations, and buffer allocations. But on some platforms or within some filesystems, it is better to disable this feature to avoid operational problems:
For server configurations that are vulnerable to these problems, you should disable this feature by specifying:
For NFS or SMB mounted files, this feature may be disabled explicitly for the offending files by specifying:
In the event of a problem or error, Apache can be configured to do one of four things,
The first option is the default, while options 2-4 are
configured using the
URLs can begin with a slash (/) for local web-paths (relative
to the
Additionally, the special value default
can be used
to specify Apache's simple hardcoded message. While not required
under normal circumstances, default
will restore
Apache's simple hardcoded message for configurations that would
otherwise inherit an existing
Note that when you specify an http
in front of it), Apache will send a redirect to the
client to tell it where to find the document, even if the
document ends up being on the same server. This has several
implications, the most important being that the client will not
receive the original error status code, but instead will
receive a redirect status code. This in turn can confuse web
robots and other clients which try to determine if a URL is
valid using the status code. In addition, if you use a remote
URL in an ErrorDocument 401
, the client will not
know to prompt the user for a password since it will not
receive the 401 status code. Therefore, if you use an
ErrorDocument 401
directive then it must refer to a local
document.
Microsoft Internet Explorer (MSIE) will by default ignore server-generated error messages when they are "too small" and substitute its own "friendly" error messages. The size threshold varies depending on the type of error, but in general, if you make your error document greater than 512 bytes, then MSIE will show the server-generated error rather than masking it. More information is available in Microsoft Knowledge Base article Q294807.
Although most error messages can be overriden, there are certain
circumstances where the internal messages are used regardless of the
setting of
Prior to version 2.0, messages were indicated by prefixing them with a single unmatched double quote character.
The
If the file-path begins with a pipe (|) then it is assumed to be a command to spawn to handle the error log.
Using syslog
instead of a filename enables logging
via syslogd(8) if the system supports it. The default is to use
syslog facility local7
, but you can override this by
using the syslog:facility
syntax where
facility can be one of the names usually documented in
syslog(1).
SECURITY: See the security tips document for details on why your security could be compromised if the directory where log files are stored is writable by anyone other than the user that starts the server.
When entering a file path on non-Unix platforms, care should be taken to make sure that only forward slashed are used even though the platform may allow the use of back slashes. In general it is a good idea to always use forward slashes throughout the configuration files.
The ETag
(entity
tag) response header field when the document is based on a file.
(The ETag
value is used in cache management to save
network bandwidth.) In Apache 1.3.22 and earlier, the
ETag
value was always formed
from the file's inode, size, and last-modified time (mtime). The
ETag
field will be
included in the responseThe INode
, MTime
, and Size
keywords may be prefixed with either +
or -
,
which allow changes to be made to the default setting inherited
from a broader scope. Any keyword appearing without such a prefix
immediately and completely cancels the inherited setting.
If a directory's configuration includes
FileETag INode MTime Size
, and a
subdirectory's includes FileETag -INode
,
the setting for that subdirectory (which will be inherited by
any sub-subdirectories that don't override it) will be equivalent to
FileETag MTime Size
.
INode MTime Size
as a fixed format for ETag
comparisons on conditional requests.
These conditional requests will break if the ETag
format is
changed via The </Files>
directive. The directives given within this section will be applied to
any object with a basename (last component of filename) matching the
specified filename. .htaccess
files are read, but before
The filename argument should include a filename, or
a wild-card string, where ?
matches any single character,
and *
matches any sequences of characters.
~
character. For example:
would match most common Internet graphics formats.
Note that unlike .htaccess
files. This allows users to control access to
their own files, at a file-by-file level.
The
would match most common Internet graphics formats.
When placed into an .htaccess
file or a
.gif
,
you might want to use:
Note that unlike
You can override any None
:
This directive enables DNS lookups so that host names can be
logged (and passed to CGIs/SSIs in REMOTE_HOST
).
The value Double
refers to doing double-reverse
DNS lookup. That is, after a reverse lookup is performed, a forward
lookup is then performed on that result. At least one of the IP
addresses in the forward lookup must match the original
address. (In "tcpwrappers" terminology this is called
PARANOID
.)
Regardless of the setting, when HostnameLookups Double
. For example, if only
HostnameLookups On
and a request is made to an object
that is protected by hostname restrictions, regardless of whether
the double-reverse fails or not, CGIs will still be passed the
single-reverse result in REMOTE_HOST
.
The default is Off
in order to save the network
traffic for those sites that don't truly need the reverse
lookups done. It is also better for the end users because they
don't have to suffer the extra latency that a lookup entails.
Heavily loaded sites should leave this directive
Off
, since DNS lookups can take considerable
amounts of time. The utility bin
subdirectory of your installation
directory, can be used to look up host names from logged IP addresses
offline.
The
would match HTTP/1.0 requests without a Host: header.
The <IfDefine test>...</IfDefine>
section is used to mark directives that are conditional. The
directives within an
The test in the
!
parameter-nameIn the former case, the directives between the start and end markers are only processed if the parameter named parameter-name is defined. The second format reverses the test, and only processes the directives if parameter-name is not defined.
The parameter-name argument is a define as given on the
-Dparameter
at the time the server was started or by the
The <IfModule test>...</IfModule>
section is used to mark directives that are conditional on the presence of
a specific module. The directives within an
The test in the
In the former case, the directives between the start and end
markers are only processed if the module named module
is included in Apache -- either compiled in or
dynamically loaded using
The module argument can be either the module identifier or
the file name of the module, at the time it was compiled. For example,
rewrite_module
is the identifier and
mod_rewrite.c
is the file name. If a module consists of
several source files, use the name of the file containing the string
STANDARD20_MODULE_STUFF
.
This directive allows inclusion of other configuration files from within the server configuration files.
Shell-style (fnmatch()
) wildcard characters can be used to
include several files at once, in alphabetical order. In
addition, if
The file path specified may be an absolute path, or may be relative
to the
Examples:
Or, providing paths relative to your
The Keep-Alive extension to HTTP/1.0 and the persistent
connection feature of HTTP/1.1 provide long-lived HTTP sessions
which allow multiple requests to be sent over the same TCP
connection. In some cases this has been shown to result in an
almost 50% speedup in latency times for HTML documents with
many images. To enable Keep-Alive connections, set
KeepAlive On
.
For HTTP/1.0 clients, Keep-Alive connections will only be used if they are specifically requested by a client. In addition, a Keep-Alive connection with an HTTP/1.0 client can only be used when the length of the content is known in advance. This implies that dynamic content such as CGI output, SSI pages, and server-generated directory listings will generally not use Keep-Alive connections to HTTP/1.0 clients. For HTTP/1.1 clients, persistent connections are the default unless otherwise specified. If the client requests it, chunked encoding will be used in order to send content of unknown length over persistent connections.
When a client uses a Keep-Alive connection it will be counted
as a single "request" for the
The number of seconds Apache will wait for a subsequent
request before closing the connection. By adding a postfix of ms the
timeout can be also set in milliseconds. Once a request has been
received, the timeout value specified by the
Setting
In a name-based virtual host context, the value of the first
defined virtual host (the default host) in a set of
Access controls are normally effective for
all access methods, and this is the usual
desired behavior. In the general case, access control
directives should not be placed within a
The purpose of the POST
, PUT
, and
DELETE
, leaving all other methods unprotected:
The method names listed can be one or more of: GET
,
POST
, PUT
, DELETE
,
CONNECT
, OPTIONS
,
PATCH
, PROPFIND
, PROPPATCH
,
MKCOL
, COPY
, MOVE
,
LOCK
, and UNLOCK
. The method name is
case-sensitive. If GET
is used it will also
restrict HEAD
requests. The TRACE
method
cannot be limited (see
The
For example, given the following configuration, all users will
be authorized for POST
requests, and the
Require group editors
directive will be ignored
in all cases:
</LimitExcept>
are used to enclose
a group of access control directives which will then apply to any
HTTP access method not listed in the arguments;
i.e., it is the opposite of a
For example:
An internal redirect happens, for example, when using the
The directive stores two different limits, which are evaluated on per-request basis. The first number is the maximum number of internal redirects, that may follow each other. The second number determines, how deep subrequests may be nested. If you specify only one number, it will be assigned to both limits.
This directive specifies the number of bytes from 0 (meaning unlimited) to 2147483647 (2GB) that are allowed in a request body.
The PUT
method will require
a value at least as large as any representation that the server
wishes to accept for that resource.
This directive gives the server administrator greater control over abnormal client request behavior, which may be useful for avoiding some forms of denial-of-service attacks.
If, for example, you are permitting file upload to a particular location, and wish to limit the size of the uploaded file to 100K, you might use the following directive:
Number is an integer from 0 (meaning unlimited) to
32767. The default value is defined by the compile-time
constant DEFAULT_LIMIT_REQUEST_FIELDS
(100 as
distributed).
The
This directive gives the server administrator greater control over abnormal client request behavior, which may be useful for avoiding some forms of denial-of-service attacks. The value should be increased if normal clients see an error response from the server that indicates too many fields were sent in the request.
For example:
This directive specifies the number of bytes that will be allowed in an HTTP request header.
The
This directive gives the server administrator greater control over abnormal client request behavior, which may be useful for avoiding some forms of denial-of-service attacks.
For example:
This directive sets the number of bytes that will be allowed on the HTTP request-line.
The GET
request.
This directive gives the server administrator greater control over abnormal client request behavior, which may be useful for avoiding some forms of denial-of-service attacks.
For example:
Limit (in bytes) on maximum size of an XML-based request
body. A value of 0
will disable any checking.
Example:
The </Location>
directive. .htaccess
files are read, and after the
Use <Location />
, which is an easy way to
apply a configuration to the entire server.
For all origin (non-proxy) requests, the URL to be matched is a
URL-path of the form /path/
. No scheme, hostname,
port, or query string may be included. For proxy requests, the
URL to be matched is of the form
scheme://servername/path
, and you must include the
prefix.
The URL may use wildcards. In a wild-card string, ?
matches
any single character, and *
matches any sequences of
characters. Neither wildcard character matches a / in the URL-path.
~
character. For example:
would match URLs that contained the substring /extra/data
or /special/data
. The directive
The example.com
, you might use:
The slash character has special meaning depending on where in a
URL it appears. People may be used to its behavior in the filesystem
where multiple adjacent slashes are frequently collapsed to a single
slash (i.e., /home///foo
is the same as
/home/foo
). In URL-space this is not necessarily true.
The
For example, <LocationMatch ^/abc>
would match
the request URL /abc
but not the request URL
//abc
. The (non-regex) <Location /abc/def>
and the
request is to /abc//def
then it will match.
The
would match URLs that contained the substring /extra/data
or /special/data
.
Level | Description | Example |
---|---|---|
emerg |
Emergencies - system is unusable. | "Child cannot open lock file. Exiting" |
alert |
Action must be taken immediately. | "getpwuid: couldn't determine user name from uid" |
crit |
Critical Conditions. | "socket: Failed to get a socket, exiting child" |
error |
Error conditions. | "Premature end of script headers" |
warn |
Warning conditions. | "child process 1234 did not exit, sending another SIGHUP" |
notice |
Normal but significant condition. | "httpd: caught SIGBUS, attempting to dump core in ..." |
info |
Informational. | "Server seems busy, (you may need to increase StartServers, or Min/MaxSpareServers)..." |
debug |
Debug-level messages | "Opening config file ..." |
When a particular level is specified, messages from all
other levels of higher significance will be reported as well.
E.g., when LogLevel info
is specified,
then messages with log levels of notice
and
warn
will also be posted.
Using a level of at least crit
is
recommended.
For example:
When logging to a regular file messages of the level
notice
cannot be suppressed and thus are always
logged. However, this doesn't apply when logging is done
using syslog
.
The 0
, unlimited requests will be allowed. We
recommend that this setting be kept to a high value for maximum
server performance.
For example:
The
Although addr can be hostname it is recommended that you always use an IP address, e.g.
With the
Note, that the "main server" and any _default_
servers
will never be served for a request to a
Optionally you can specify a port number on which the name-based virtual hosts should be used, e.g.
IPv6 addresses must be enclosed in square brackets, as shown in the following example:
To receive requests on all interfaces, you can use an argument of
*
Note that the argument to the
The
option can be set to None
, in which
case none of the extra features are enabled, or one or more of
the following:
All
MultiViews
. This is the default
setting.ExecCGI
FollowSymLinks
Even though the server follows the symlink it does not
change the pathname used to match against
Note also, that this option gets ignored if set
inside a
Omitting this option should not be considered a security restriction, since symlink testing is subject to race conditions that make it circumventable.
Includes
IncludesNOEXEC
#exec
cmd
and #exec cgi
are disabled. It is still
possible to #include virtual
CGI scripts from
Indexes
index.html
) in that directory, then
MultiViews
SymLinksIfOwnerMatch
This option gets ignored if
set inside a
This option should not be considered a security restriction, since symlink testing is subject to race conditions that make it circumventable.
Normally, if multiple +
or -
symbol, the options are
merged. Any options preceded by a +
are added to the
options currently in force, and any options preceded by a
-
are removed from the options currently in
force.
Mixing +
or
-
with those without is not valid syntax, and is likely
to cause unexpected results.
For example, without any +
and -
symbols:
then only Includes
will be set for the
/web/docs/spec
directory. However if the second
+
and
-
symbols:
then the options FollowSymLinks
and
Includes
are set for the /web/docs/spec
directory.
Using -IncludesNOEXEC
or
-Includes
disables server-side includes completely
regardless of the previous setting.
The default in the absence of any other settings is
All
.
Takes 1 or 2 parameters. The first parameter sets the soft
resource limit for all processes and the second parameter sets
the maximum resource limit. Either parameter can be a number,
or max
to indicate to the server that the limit should
be set to the maximum allowed by the operating system
configuration. Raising the maximum resource limit requires that
the server is running as root
, or in the initial startup
phase.
This applies to processes forked off from Apache children servicing requests, not the Apache children themselves. This includes CGI scripts and SSI exec commands, but not any processes forked off from the Apache parent such as piped logs.
CPU resource limits are expressed in seconds per process.
Takes 1 or 2 parameters. The first parameter sets the soft
resource limit for all processes and the second parameter sets
the maximum resource limit. Either parameter can be a number,
or max
to indicate to the server that the limit should
be set to the maximum allowed by the operating system
configuration. Raising the maximum resource limit requires that
the server is running as root
, or in the initial startup
phase.
This applies to processes forked off from Apache children servicing requests, not the Apache children themselves. This includes CGI scripts and SSI exec commands, but not any processes forked off from the Apache parent such as piped logs.
Memory resource limits are expressed in bytes per process.
Takes 1 or 2 parameters. The first parameter sets the soft
resource limit for all processes and the second parameter sets
the maximum resource limit. Either parameter can be a number,
or max
to indicate to the server that the limit
should be set to the maximum allowed by the operating system
configuration. Raising the maximum resource limit requires that
the server is running as root
, or in the initial startup
phase.
This applies to processes forked off from Apache children servicing requests, not the Apache children themselves. This includes CGI scripts and SSI exec commands, but not any processes forked off from the Apache parent such as piped logs.
Process limits control the number of processes per user.
If CGI processes are not running
under user ids other than the web server user id, this directive
will limit the number of processes that the server itself can
create. Evidence of this situation will be indicated by
cannot fork
messages in the
error_log
.
Registry-Strict
is available in Apache 2.0 and
laterThis directive is used to control how Apache finds the
interpreter used to run CGI scripts. The default setting is
Script
. This causes Apache to use the interpreter pointed to
by the shebang line (first line, starting with #!
) in the
script. On Win32 systems this line usually looks like:
or, if perl
is in the PATH
, simply:
Setting ScriptInterpreterSource Registry
will
cause the Windows Registry tree HKEY_CLASSES_ROOT
to be
searched using the script file extension (e.g., .pl
) as a
search key. The command defined by the registry subkey
Shell\ExecCGI\Command
or, if it does not exist, by the subkey
Shell\Open\Command
is used to open the script file. If the
registry keys cannot be found, Apache falls back to the behavior of the
Script
option.
Be careful when using ScriptInterpreterSource
Registry
with Registry
setting may cause undesired
program calls on files which are typically not executed. For
example, the default open command on .htm
files on
most Windows systems will execute Microsoft Internet Explorer, so
any HTTP request for an .htm
file existing within the
script directory would start the browser in the background on the
server. This is a good way to crash your system within a minute or
so.
The option Registry-Strict
which is new in Apache
2.0 does the same thing as Registry
but uses only the
subkey Shell\ExecCGI\Command
. The
ExecCGI
key is not a common one. It must be
configured manually in the windows registry and hence prevents
accidental program calls on your system.
The httpd
doesn't recognize the supplied argument
as an URL, it
assumes, that it's an email-address and prepends it with
mailto:
in hyperlink targets. However, it's recommended to
actually use an email address, since there are a lot of CGI scripts that
make that assumption. If you want to use an URL, it should point to another
server under your control. Otherwise users may not be able to contact you in
case of errors.
It may be worth setting up a dedicated address for this, e.g.
as users do not always mention that they are talking about the server!
The
The simple.example.com
,
but the machine also has the DNS alias www.example.com
and you wish the web server to be so identified, the following
directive should be used:
If no
If you are using name-based virtual hosts,
the Host:
header to match this virtual host.
Sometimes, the server runs behind a device that processes SSL,
such as a reverse proxy, load balancer or SSL offload
appliance. When this is the case, specify the
https://
scheme and the port number to which the
clients connect in the
See the description of the
The
The conf/
and logs/
. Relative
paths in other configuration directives (such as
-d
option to httpd
The
The Off
setting, which is the default, suppresses the footer line (and is
therefore compatible with the behavior of Apache-1.2 and
below). The On
setting simply adds a line with the
server version number and EMail
setting additionally creates a
"mailto:" reference to the
After version 2.0.44, the details of the server version number
presented are controlled by the
Server
HTTP response
headerThis directive controls whether Server
response
header field which is sent back to clients includes a
description of the generic OS-type of the server as well as
information about compiled-in modules.
ServerTokens Prod[uctOnly]
Server:
Apache
ServerTokens Major
Server:
Apache/2
ServerTokens Minor
Server:
Apache/2.0
ServerTokens Min[imal]
Server:
Apache/2.0.41
ServerTokens OS
Server: Apache/2.0.41
(Unix)
ServerTokens Full
(or not specified)Server: Apache/2.0.41
(Unix) PHP/4.2.2 MyMod/1.2
This setting applies to the entire server, and cannot be enabled or disabled on a virtualhost-by-virtualhost basis.
After version 2.0.44, this directive also controls the
information presented by the
When placed into an .htaccess
file or a
.htaccess
file in that directory:
Another example: if you wanted to have the server display a
status report whenever a URL of
http://servername/status
was called, you might put
the following into httpd.conf
:
You can override an earlier defined None
.
Note: because SetHandler overrides default handlers, normal behaviour such as handling of URLs ending in a slash (/) as directories or index files is suppressed.
The
If more than one filter is specified, they must be separated by semicolons in the order in which they should process the content.
The
For example, the following configuration will process all files
in the /www/data/
directory for server-side
includes.
If more than one filter is specified, they must be separated by semicolons in the order in which they should process the content.
The
TRACE
requestsThis directive overrides the behavior of TRACE
for both
the core server and TraceEnable on
permits TRACE
requests per
RFC 2616, which disallows any request body to accompany the request.
TraceEnable off
causes the core server and
405
(Method not
allowed) error to the client.
Finally, for testing and diagnostic purposes only, request
bodies may be allowed using the non-compliant TraceEnable
extended
directive. The core (as an origin server) will
restrict the request body to 64k (plus 8k for chunk headers if
Transfer-Encoding: chunked
is used). The core will
reflect the full headers and all chunk headers with the response
body. As a proxy server, the request body is not restricted to 64k.
In many situations Apache must construct a self-referential
URL -- that is, a URL that refers back to the same server. With
UseCanonicalName On
Apache will use the hostname and port
specified in the SERVER_NAME
and SERVER_PORT
in CGIs.
With UseCanonicalName Off
Apache will form
self-referential URLs using the hostname and port supplied by
the client if any are supplied (otherwise it will use the
canonical name, as defined above). These values are the same
that are used to implement name based virtual hosts,
and are available with the same clients. The CGI variables
SERVER_NAME
and SERVER_PORT
will be
constructed from the client supplied values as well.
An example where this may be useful is on an intranet server
where you have users connecting to the machine using short
names such as www
. You'll notice that if the users
type a shortname, and a URL which is a directory, such as
http://www/splat
, without the trailing
slash then Apache will redirect them to
http://www.domain.com/splat/
. If you have
authentication enabled, this will cause the user to have to
authenticate twice (once for www
and once again
for www.domain.com
-- see the
FAQ on this subject for more information). But if
Off
, then
Apache will redirect to http://www/splat/
.
There is a third option, UseCanonicalName DNS
,
which is intended for use with mass IP-based virtual hosting to
support ancient clients that do not provide a
Host:
header. With this option Apache does a
reverse DNS lookup on the server IP address that the client
connected to in order to work out self-referential URLs.
If CGIs make assumptions about the values of SERVER_NAME
they may be broken by this option. The client is essentially free
to give whatever value they want as a hostname. But if the CGI is
only using SERVER_NAME
to construct self-referential URLs
then it should be just fine.
In many situations Apache must construct a self-referential
URL -- that is, a URL that refers back to the same server. With
UseCanonicalPhysicalPort On
Apache will, when
constructing the canonical port for the server to honor
the UseCanonicalPhysicalPort Off
Apache will not ever use the actual physical port number, instead
relying on all configured information to construct a valid port number.
The ordering of when the physical port is used is as follows:
UseCanonicalName On
Servername
UseCanonicalName Off | DNS
Host:
headerServername
With UseCanonicalPhysicalPort Off
, the
physical ports are removed from the ordering.
</VirtualHost>
are used to enclose a group of
directives that will apply only to a particular virtual host. Any
directive that is allowed in a virtual host context may be
used. When the server receives a request for a document on a
particular virtual host, it uses the configuration directives
enclosed in the
*
, which is used only in combination with
NameVirtualHost *
to match all IP addresses; or_default_
, which is used only
with IP virtual hosting to catch unmatched IP addresses.IPv6 addresses must be specified in square brackets because the optional port number could not be determined otherwise. An IPv6 example is shown below:
Each Virtual Host must correspond to a different IP address,
different port number or a different host name for the server,
in the former case the server machine must be configured to
accept IP packets for multiple addresses. (If the machine does
not have multiple network interfaces, then this can be
accomplished with the ifconfig alias
command -- if
your OS supports it).
The use of
When using IP-based virtual hosting, the special name
_default_
can be specified in
which case this virtual host will match any IP address that is
not explicitly listed in another virtual host. In the absence
of any _default_
virtual host the "main" server config,
consisting of all those definitions outside any VirtualHost
section, is used when no IP-match occurs. (But note that any IP
address that matches a _default_
virtual host.
See the name-based virtual hosting
documentation for further details.)
You can specify a :port
to change the port that is
matched. If unspecified then it defaults to the same port as the
most recent :*
to match all ports on that address. (This is recommended when used
with _default_
.)
A
See the security tips document for details on why your security could be compromised if the directory where log files are stored is writable by anyone other than the user that starts the server.