Manuel Apache
Apache Core Features
| Description: | Core Apache HTTP Server features that are always available |
|---|---|
| Status: | Core |
Directives
AcceptFilter
AcceptPathInfo
AccessFileName
AddDefaultCharset
AddOutputFilterByType
AllowEncodedSlashes
AllowOverride
AuthName
AuthType
CGIMapExtension
ContentDigest
DefaultType
<Directory>
<DirectoryMatch>
DocumentRoot
EnableMMAP
EnableSendfile
ErrorDocument
ErrorLog
FileETag
<Files>
<FilesMatch>
ForceType
HostnameLookups
<IfDefine>
<IfModule>
Include
KeepAlive
KeepAliveTimeout
<Limit>
<LimitExcept>
LimitInternalRecursion
LimitRequestBody
LimitRequestFields
LimitRequestFieldSize
LimitRequestLine
LimitXMLRequestBody
<Location>
<LocationMatch>
LogLevel
MaxKeepAliveRequests
NameVirtualHost
Options
Require
RLimitCPU
RLimitMEM
RLimitNPROC
Satisfy
ScriptInterpreterSource
ServerAdmin
ServerAlias
ServerName
ServerPath
ServerRoot
ServerSignature
ServerTokens
SetHandler
SetInputFilter
SetOutputFilter
TimeOut
TraceEnable
UseCanonicalName
UseCanonicalPhysicalPort
<VirtualHost>
AcceptFilter Directive
| Description: | Configures optimizations for a Protocol's Listener Sockets |
|---|---|
| Syntax: | AcceptFilter protocol accept_filter |
| Context: | server config |
| Status: | Core |
| Module: | core |
| Compatibility: | Available in Apache 2.1.5 and later |
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:
AcceptFilter http httpready
AcceptFilter https dataready
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:
AcceptFilter http data
AcceptFilter https data
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:
AcceptFilter nntp none
AcceptPathInfo Directive
| Description: | Resources accept trailing pathname information |
|---|---|
| Syntax: | AcceptPathInfo On|Off|Default |
| Default: | AcceptPathInfo Default |
| Context: | server config, virtual host, directory, .htaccess |
| Override: | FileInfo |
| Status: | Core |
| Module: | core |
| Compatibility: | Available in Apache 2.0.30 and later |
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 AcceptPathInfo directive are:
Off- A request will only be accepted if it maps to a literal path that exists. Therefore a request with trailing pathname information after the true filename such as
/test/here.html/morein the above example will return a 404 NOT FOUND error. On- A request will be accepted if a leading path component maps to a file that exists. The above example
/test/here.html/morewill be accepted if/test/here.htmlmaps to a valid file. Default- The treatment of requests with trailing pathname information is determined by the handler responsible for the request. The core handler for normal files defaults to rejecting
PATH_INFOrequests. Handlers that serve scripts, such as cgi-script and isapi-handler, generally acceptPATH_INFOby 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:
<Files "mypaths.shtml">
Options +Includes
SetOutputFilter INCLUDES
AcceptPathInfo On
</Files>
AccessFileName Directive
| Description: | Name of the distributed configuration file |
|---|---|
| Syntax: | AccessFileName filename [filename] ... |
| Default: | AccessFileName .htaccess |
| Context: | server config, virtual host |
| Status: | Core |
| Module: | core |
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:
AccessFileName .acl
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
<Directory />
AllowOverride None
</Directory>
See also
AddDefaultCharset Directive
| Description: | Default charset parameter to be added when a response content-type is text/plain or text/html |
|---|---|
| Syntax: | AddDefaultCharset On|Off|charset |
| Default: | AddDefaultCharset Off |
| Context: | server config, virtual host, directory, .htaccess |
| Override: | FileInfo |
| Status: | Core |
| Module: | core |
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:
AddDefaultCharset utf-8
AddDefaultCharset should only be used when all of the text resources to which it applies are known to be in that character encoding and it is too inconvenient to label their charset individually. One such example is to add the charset parameter to resources containing generated content, such as legacy CGI scripts, that might be vulnerable to cross-site scripting attacks due to user-provided data being included in the output. Note, however, that a better solution is to just fix (or delete) those scripts, since setting a default charset does not protect users that have enabled the "auto-detect character encoding" feature on their browser.
See also
AddOutputFilterByType Directive
| Description: | assigns an output filter to a particular MIME-type |
|---|---|
| Syntax: | AddOutputFilterByType filter[;filter...] MIME-type [MIME-type] ... |
| Context: | server config, virtual host, directory, .htaccess |
| Override: | FileInfo |
| Status: | Core |
| Module: | core |
| Compatibility: | Available in Apache 2.0.33 and later; deprecated in Apache 2.1 and later |
This directive activates a particular output filter for a request depending on the response MIME-type. Because of certain problems discussed below, this directive is deprecated. The same functionality is available using mod_filter.
The following example uses the DEFLATE filter, which is provided by mod_deflate. It will compress all output (either static or dynamic) which is labeled as text/html or text/plain before it is sent to the client.
AddOutputFilterByType DEFLATE text/html text/plain
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 AddOutputFilterByType directive for each of these filters.
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.
<Location /cgi-bin/>
Options Includes
AddOutputFilterByType INCLUDES;DEFLATE text/html
</Location>
Note
Enabling filters with AddOutputFilterByType may fail partially or completely in some cases. For example, no filters are applied if the MIME-type could not be determined and falls back to the DefaultType setting, even if the DefaultType is the same.
However, if you want to make sure, that the filters will be applied, assign the content type to a resource explicitly, for example with AddType or ForceType. Setting the content type within a (non-nph) CGI script is also safe.
See also
AllowEncodedSlashes Directive
| Description: | Determines whether encoded path separators in URLs are allowed to be passed through |
|---|---|
| Syntax: | AllowEncodedSlashes On|Off |
| Default: | AllowEncodedSlashes Off |
| Context: | server config, virtual host |
| Status: | Core |
| Module: | core |
| Compatibility: | Available in Apache 2.0.46 and later |
The AllowEncodedSlashes directive allows URLs which contain encoded path separators (%2F for / and additionally %5C for \ on according systems) to be used. Normally such URLs are refused with a 404 (Not found) error.
Turning AllowEncodedSlashes On is mostly useful when used in conjunction with PATH_INFO.
Note
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.
See also
AllowOverride Directive
| Description: | Types of directives that are allowed in .htaccess files |
|---|---|
| Syntax: | AllowOverride All|None|directive-type [directive-type] ... |
| Default: | AllowOverride All |
| Context: | directory |
| Status: | Core |
| Module: | core |
When the server finds an .htaccess file (as specified by AccessFileName) it needs to know which directives declared in that file can override earlier configuration directives.
Only available in <Directory> sections
AllowOverride is valid only in <Directory> sections specified without regular expressions, not in <Location>, <DirectoryMatch> or <Files> sections.
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.
- AuthConfig
- Allow use of the authorization directives (
AuthDBMGroupFile,AuthDBMUserFile,AuthGroupFile,AuthName,AuthType,AuthUserFile,Require, etc.). - FileInfo
- Allow use of the directives controlling document types (
DefaultType,ErrorDocument,ForceType,LanguagePriority,SetHandler,SetInputFilter,SetOutputFilter, andmod_mimeAdd* and Remove* directives, etc.), document meta data (Header,RequestHeader,SetEnvIf,SetEnvIfNoCase,BrowserMatch,CookieExpires,CookieDomain,CookieStyle,CookieTracking,CookieName),mod_rewritedirectivesRewriteEngine,RewriteOptions,RewriteBase,RewriteCond,RewriteRule) andActionfrommod_actions. - Indexes
- Allow use of the directives controlling directory indexing (
AddDescription,AddIcon,AddIconByEncoding,AddIconByType,DefaultIcon,DirectoryIndex,FancyIndexing,HeaderName,IndexIgnore,IndexOptions,ReadmeName, etc.). - Limit
- Allow use of the directives controlling host access (
Allow,DenyandOrder). - Options[=Option,...]
- Allow use of the directives controlling specific directory features (
OptionsandXBitHack). An equal sign may be given followed by a comma (but no spaces) separated lists of options that may be set using theOptionscommand.
Example:
AllowOverride AuthConfig Indexes
In the example above all directives that are neither in the group AuthConfig nor Indexes cause an internal server error.
See also
AuthName Directive
| Description: | Authorization realm for use in HTTP authentication |
|---|---|
| Syntax: | AuthName auth-domain |
| Context: | directory, .htaccess |
| Override: | AuthConfig |
| Status: | Core |
| Module: | core |
This directive sets the name of the authorization realm for a directory. This realm is given to the client so that the user knows which username and password to send. AuthName takes a single argument; if the realm name contains spaces, it must be enclosed in quotation marks. It must be accompanied by AuthType and Require directives, and directives such as AuthUserFile and AuthGroupFile to work.
For example:
AuthName "Top Secret"
The string provided for the AuthName is what will appear in the password dialog provided by most browsers.
See also
AuthType Directive
| Description: | Type of user authentication |
|---|---|
| Syntax: | AuthType Basic|Digest |
| Context: | directory, .htaccess |
| Override: | AuthConfig |
| Status: | Core |
| Module: | core |
This directive selects the type of user authentication for a directory. The authentication types available are Basic (implemented by mod_auth_basic) and Digest (implemented by mod_auth_digest).
To implement authentication, you must also use the AuthName and Require directives. In addition, the server must have an authentication-provider module such as mod_authn_file and an authorization module such as mod_authz_user.
See also
CGIMapExtension Directive
| Description: | Technique for locating the interpreter for CGI scripts |
|---|---|
| Syntax: | CGIMapExtension cgi-path .extension |
| Context: | directory, .htaccess |
| Override: | FileInfo |
| Status: | Core |
| Module: | core |
| Compatibility: | NetWare only |
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.
ContentDigest Directive
| Description: | Enables the generation of Content-MD5 HTTP Response headers |
|---|---|
| Syntax: | ContentDigest On|Off |
| Default: | ContentDigest Off |
| Context: | server config, virtual host, directory, .htaccess |
| Override: | Options |
| Status: | Core |
| Module: | core |
This 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:
Content-MD5: AuLb7Dp1rqtRtxz2m9kRpA==
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 core, and not by any module. For example, SSI documents, output from CGI scripts, and byte range responses do not have this header.
DefaultType Directive
| Description: | MIME content-type that will be sent if the server cannot determine a type in any other way |
|---|---|
| Syntax: | DefaultType MIME-type|none |
| Default: | DefaultType text/plain |
| Context: | server config, virtual host, directory, .htaccess |
| Override: | FileInfo |
| Status: | Core |
| Module: | core |
| Compatibility: | The argument none is available in Apache 2.2.7 and later |
There will be times when the server is asked to provide a document whose type cannot be determined by its MIME types mappings.
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:
DefaultType image/gif
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
DefaultType None is only available in httpd-2.2.7 and later.
Note that unlike ForceType, this directive only provides the default mime-type. All other mime-type definitions, including filename extensions, that might identify the media type will override this default.
<Directory> Directive
| Description: | Enclose a group of directives that apply only to the named file-system directory and sub-directories |
|---|---|
| Syntax: | <Directory directory-path> ... </Directory> |
| Context: | server config, virtual host |
| Status: | Core |
| Module: | core |
<Directory> and </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:
<Directory /usr/local/httpd/htdocs>
Options Indexes FollowSymLinks
</Directory>
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.
Regular expressions can also be used, with the addition of the ~ character. For example:
<Directory ~ "^/www/.*/[0-9]{3}">
would match directories in /www/ that consisted of three numbers.
If multiple (non-regular expression) <Directory> sections match the directory (or one of its parents) containing a document, then the directives are applied in the order of shortest match first, interspersed with the directives from the .htaccess files. For example, with
<Directory />
AllowOverride None
</Directory>
<Directory /home/>
AllowOverride FileInfo
</Directory>
for access to the document /home/web/dir/doc.html the steps are:
- Apply directive
AllowOverride None(disabling.htaccessfiles). - Apply directive
AllowOverride FileInfo(for directory/home). - Apply any
FileInfodirectives in/home/.htaccess,/home/web/.htaccessand/home/web/dir/.htaccessin 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
<Directory ~ abc$>
# ... directives here ...
</Directory>
the regular expression section won't be considered until after all normal <Directory>s and .htaccess files have been applied. Then the regular expression will match on /home/abc/public_html/abc and the corresponding <Directory> will be applied.
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
<Directory />
Order Deny,Allow
Deny from All
</Directory>
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. <Directory> directives cannot nest, and cannot appear in a <Limit> or <LimitExcept> section.
See also
- How <Directory>, <Location> and <Files> sections work for an explanation of how these different sections are combined when a request is received
<DirectoryMatch> Directive
| Description: | Enclose directives that apply to file-system directories matching a regular expression and their subdirectories |
|---|---|
| Syntax: | <DirectoryMatch regex> ... </DirectoryMatch> |
| Context: | server config, virtual host |
| Status: | Core |
| Module: | core |
<DirectoryMatch> and </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 <Directory>. However, it takes as an argument a regular expression. For example:
<DirectoryMatch "^/www/(.+/)?[0-9]{3}">
would match directories in /www/ that consisted of three numbers.
See also
<Directory>for a description of how regular expressions are mixed in with normal<Directory>s- How <Directory>, <Location> and <Files> sections work for an explanation of how these different sections are combined when a request is received
DocumentRoot Directive
| Description: | Directory that forms the main document tree visible from the web |
|---|---|
| Syntax: | DocumentRoot directory-path |
| Default: | DocumentRoot /usr/local/apache/htdocs |
| Context: | server config, virtual host |
| Status: | Core |
| Module: | core |
This directive sets the directory from which httpd will serve files. Unless matched by a directive like Alias, the server appends the path from the requested URL to the document root to make the path to the document. Example:
DocumentRoot /usr/web
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 ServerRoot.
The DocumentRoot should be specified without a trailing slash.
See also
EnableMMAP Directive
| Description: | Use memory-mapping to read files during delivery |
|---|---|
| Syntax: | EnableMMAP On|Off |
| Default: | EnableMMAP On |
| Context: | server config, virtual host, directory, .htaccess |
| Override: | FileInfo |
| Status: | Core |
| Module: | core |
This directive controls whether the httpd may use memory-mapping if it needs to read the contents of a file during delivery. By default, when the handling of a request requires access to the data within a file -- for example, when delivering a server-parsed file using mod_include -- Apache memory-maps the file if the OS supports it.
This memory-mapping sometimes yields a performance improvement. But in some environments, it is better to disable the memory-mapping to prevent operational problems:
- On some multiprocessor systems, memory-mapping can reduce the performance of the
httpd. - With an NFS-mounted
DocumentRoot, thehttpdmay crash due to a segmentation fault if a file is deleted or truncated while thehttpdhas it memory-mapped.
For server configurations that are vulnerable to these problems, you should disable memory-mapping of delivered files by specifying:
EnableMMAP Off
For NFS mounted files, this feature may be disabled explicitly for the offending files by specifying:
<Directory "/path-to-nfs-files"> EnableMMAP Off </Directory>
EnableSendfile Directive
| Description: | Use the kernel sendfile support to deliver files to the client |
|---|---|
| Syntax: | EnableSendfile On|Off |
| Default: | EnableSendfile On |
| Context: | server config, virtual host, directory, .htaccess |
| Override: | FileInfo |
| Status: | Core |
| Module: | core |
| Compatibility: | Available in version 2.0.44 and later |
This directive controls whether httpd may use the sendfile support from the kernel to transmit file contents to the client. By default, when the handling of a request requires no access to the data within a file -- for example, when delivering a static file -- Apache uses sendfile to deliver the file contents without ever reading the file if the OS supports it.
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:
- Some platforms may have broken sendfile support that the build system did not detect, especially if the binaries were built on another box and moved to such a machine with broken sendfile support.
- On Linux the use of sendfile triggers TCP-checksum offloading bugs on certain networking cards when using IPv6.
- On Linux on Itanium, sendfile may be unable to handle files over 2GB in size.
- With a network-mounted
DocumentRoot(e.g., NFS or SMB), the kernel may be unable to serve the network file through its own cache.
For server configurations that are vulnerable to these problems, you should disable this feature by specifying:
EnableSendfile Off
For NFS or SMB mounted files, this feature may be disabled explicitly for the offending files by specifying:
<Directory "/path-to-nfs-files"> EnableSendfile Off </Directory>
ErrorDocument Directive
| Description: | What the server will return to the client in case of an error |
|---|---|
| Syntax: | ErrorDocument error-code document |
| Context: | server config, virtual host, directory, .htaccess |
| Override: | FileInfo |
| Status: | Core |
| Module: | core |
| Compatibility: | Quoting syntax for text messages is different in Apache 2.0 |
In the event of a problem or error, Apache can be configured to do one of four things,
- output a simple hardcoded error message
- output a customized message
- redirect to a local URL-path to handle the problem/error
- redirect to an external URL to handle the problem/error
The first option is the default, while options 2-4 are configured using the ErrorDocument directive, which is followed by the HTTP response code and a URL or a message. Apache will sometimes offer additional information regarding the problem/error.
URLs can begin with a slash (/) for local web-paths (relative to the DocumentRoot), or be a full URL which the client can resolve. Alternatively, a message can be provided to be displayed by the browser. Examples:
ErrorDocument 500 http://foo.example.com/cgi-bin/tester
ErrorDocument 404 /cgi-bin/bad_urls.pl
ErrorDocument 401 /subscription_info.html
ErrorDocument 403 "Sorry can't allow you access today"
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 ErrorDocument.
ErrorDocument 404 /cgi-bin/bad_urls.pl
<Directory /web/docs>
ErrorDocument 404 default
</Directory>
Note that when you specify an ErrorDocument that points to a remote URL (ie. anything with a method such as 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.
Mi
Remonter 
