From 9635232ccdbb964a97d6cf0f429cebcb18f378b8 Mon Sep 17 00:00:00 2001 From: Joshua Slive Date: Mon, 27 May 2002 02:20:17 +0000 Subject: [PATCH] A bunch of small corrections, mostly to shorten s and add s. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95300 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/mod/core.html.en | 144 ++++++++++++++++++----------------- 1 file changed, 73 insertions(+), 71 deletions(-) diff --git a/docs/manual/mod/core.html.en b/docs/manual/mod/core.html.en index 13ef161060..145bc1fe94 100644 --- a/docs/manual/mod/core.html.en +++ b/docs/manual/mod/core.html.en @@ -3,7 +3,7 @@ This file is generated from xml source: DO NOT EDIT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX -->core- Apache HTTP Server
[APACHE DOCUMENTATION]

Apache HTTP Server Version 2.0

Apache Module core

Description:Core Apache HTTP Server features that are always -available
Status:Core

Directives


AcceptPathInfo Directive

Description: Controls whether requests can contain trailing pathname information
Syntax:AcceptPathInfo On|Off|Default
Default:AcceptPathInfo Default
Context:server config, virtual host, directory, .htaccess
Status:Core
Module:core
Compatibility:Available in Apache 2.0.30 and later
+availableStatus:Core

Directives


AcceptPathInfo Directive

Description: Resources accept trailing pathname information
Syntax:AcceptPathInfo On|Off|Default
Default:AcceptPathInfo Default
Context:server config, virtual host, directory, .htaccess
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 @@ -54,11 +54,12 @@ availableStatus AcceptPathInfo on
</Files>

-

AccessFileName Directive

Description: Sets the name of the .htaccess file
Syntax:AccessFileName filename [filename] ...
Default:AccessFileName .htaccess
Context:server config, virtual host
Status:Core
Module:core
+

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

When returning a document to the client the server looks for - the first existing access control file from this list of names - in every directory of the path to the document, if access - control files are enabled for that directory. For example:

+ 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 @@ -75,8 +76,8 @@ AccessFileName .acl   AllowOverride None
</Directory>
-

See also


AddDefaultCharset Directive

Description: Specifies the default character set to be added for a -response without an explicit character set
Syntax:AddDefaultCharset On|Off|charset
Default:AddDefaultCharset Off
Context:server config, virtual host, directory, .htaccess
Status:Core
Module:core
+

See also


AddDefaultCharset Directive

Description: Default character set to be added for a +response without an explicit character set
Syntax:AddDefaultCharset On|Off|charset
Default:AddDefaultCharset Off
Context:server config, virtual host, directory, .htaccess
Override:FileInfo
Status:Core
Module:core

This directive specifies the name of the character set that will be added to any response that does not have any parameter on @@ -92,8 +93,9 @@ response without an explicit character set AddDefaultCharset utf-8 -


AllowOverride Directive

Description: Sets the 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
+

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 access information.

@@ -155,7 +157,7 @@ response without an explicit character setAllowOverride AuthConfig Indexes -

See also


AuthName Directive

Description: Sets the authorization realm for use in HTTP +

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 @@ -174,7 +176,7 @@ authentication

Authentication, Authorization, and - Access Control

AuthType Directive

Description: Selects the type of user authentication
Syntax:AuthType Basic|Digest
Context:directory, .htaccess
Override:AuthConfig
Status:Core
Module:core
+ Access Control

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. Only Basic and Digest are currently implemented. @@ -185,7 +187,7 @@ authentication

Authentication, Authorization, and Access Control

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
Compatibility:Available in Apache 1.1 and later
+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 RFC2068.

@@ -211,7 +213,7 @@ headersSynta 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: Sets the MIME content-type that will be sent if the +

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
Default:DefaultType text/plain
Context:server config, virtual host, directory, .htaccess
Override:FileInfo
Status:Core
Module:core

There will be times when the server is asked to provide a document whose type cannot be determined by its MIME types @@ -236,15 +238,17 @@ named file-system directory and sub-directories

Context:server config, virtual host
Status:Core
Module:core

<Directory> and </Directory> are used to enclose a group of - directives which will apply only to the named directory and - sub-directories of that directory. Any directive which is allowed + 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. In a - wild-card string, `?' matches any single character, and `*' - matches any sequences of characters. You may - also use `[]' character ranges like in the shell. Also as of - Apache 1.3 none of the wildcards match a `/' character, which more - closely mimics the behavior of Unix shells. Example:

+ 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 <Dircectory + /*/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
@@ -271,7 +275,7 @@ named file-system directory and sub-directories
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: Sets the directory that forms the main document tree visible +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 @@ -363,13 +367,13 @@ from the web

The DocumentRoot should be specified without a trailing slash.

See also


EnableMMAP Directive

Description: Controls whether the httpd uses memory-mapping to read files -during delivery
Syntax:EnableMMAP on|off
Default:EnableMMAP on
Context:server config, virtual host, directory, .htaccess
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. +Location


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. @@ -390,7 +394,7 @@ during delivery

EnableMMAP off
-

ErrorDocument Directive

Description: Specifies what the server will return to the client +

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 @@ -446,8 +450,7 @@ in case of an error

Prior to version 2.0, messages were indicated by prefixing them with a single unmatched double quote character.

See also


ErrorLog Directive

Description: Sets the name of the file to which the server -will log errors
Syntax: ErrorLog file-path|syslog[:facility]
Default:ErrorLog logs/error_log (Unix) + customizable responses

ErrorLog Directive

Description: Location where the server will log errors
Syntax: ErrorLog file-path|syslog[:facility]
Default:ErrorLog logs/error_log (Unix) ErrorLog logs/error.log (Windows and OS/2)
Context:server config, virtual host
Status:Core
Module:core

The ErrorLog directive sets the name of the file to which the server will log any errors it encounters. If @@ -467,7 +470,7 @@ ErrorLog logs/error.log (Windows and OS/2)

LogLevel
  • Apache Log Files

  • FileETag Directive

    Description: Configures the file attributes used to create the ETag +

    See also


    FileETag Directive

    Description: File attributes used to create the ETag HTTP response header
    Syntax:FileETag component ...
    Context:server config, virtual host, directory, .htaccess
    Override:FileInfo
    Status:Core
    Module:core

    The FileETag directive configures the file @@ -508,15 +511,15 @@ HTTP response header

    FileETag MTime Size'.

    -

    <Files> Directive

    Description: Contains that directives that apply to matched -filenames
    Syntax:<Files filename> ... </Files>
    Context:server config, virtual host, directory, .htaccess
    Status:Core
    Module:core
    +

    <Files> Directive

    Description: Contains directives that apply to matched +filenames
    Syntax:<Files filename> ... </Files>
    Context:server config, virtual host, directory, .htaccess
    Override:All
    Status:Core
    Module:core

    The <Files> directive provides for access control by filename. It is comparable to the Directory directive and Location directives. It should be matched with a </Files> directive. The directives given within this section will be applied to any object - with a basename (last component of filename) matching the + with a basename (not a full path) matching the specified filename. <Files> sections are processed in the order they appear in the configuration file, after the <Directory> sections and @@ -543,8 +546,8 @@ filenames

    Syn

    See also


    <FilesMatch> Directive

    Description: Contains that directives that apply to regular-expression matched -filenames
    Syntax:<FilesMatch regex> ... </FilesMatch>
    Context:server config, virtual host, directory, .htaccess
    Status:Core
    Module:core
    + request is received

    <FilesMatch> Directive

    Description: Contains directives that apply to regular-expression matched +filenames
    Syntax:<FilesMatch regex> ... </FilesMatch>
    Context:server config, virtual host, directory, .htaccess
    Override:All
    Status:Core
    Module:core

    The <FilesMatch> directive provides for access control by filename, just as the <Files> directive does. However, it accepts a regular expression. For example:

    @@ -557,7 +560,7 @@ filenames
    Syn Directory, Location and Files sections work for an explanation of how these different sections are combined when a request is received

    ForceType Directive

    Description: Forces all matching files to be served with the specified -MIME content-type
    Syntax:ForceType mime-type
    Context:directory, .htaccess
    Status:Core
    Module:core
    Compatibility:Moved to the core in Apache 2.0
    +MIME content-type
    Syntax:ForceType mime-type
    Context:directory, .htaccess
    Override:FileInfo
    Status:Core
    Module:core
    Compatibility:Moved to the core in Apache 2.0

    When placed into an .htaccess file or a <Directory>, or <Location> or @@ -604,7 +607,7 @@ MIME content-type

    IdentityCheck Directive
    Description: Enables logging of the RFC1413 identity of the remote -user
    Syntax:IdentityCheck on|off
    Default:IdentityCheck off
    Context:
    Status:Core
    Module:core
    +user
    Syntax:IdentityCheck on|off
    Default:IdentityCheck off
    Context:server config, virtual host, directory
    Status:Core
    Module:core

    This directive enables RFC1413-compliant logging of the remote user name for each connection, where the client machine runs identd or something similar. This information is logged in @@ -621,7 +624,7 @@ user

    Syntax:< from the Internet.


    <IfDefine> Directive

    Description: Encloses directives that will be processed only if a test is true at startup
    Syntax:<IfDefine [!]parameter-name> ... - </IfDefine>
    Context:server config, virtual host, directory, .htaccess
    Status:Core
    Module:core
    + </IfDefine>
    Context:server config, virtual host, directory, .htaccess
    Override:All
    Status:Core
    Module:core

    The <IfDefine test>...</IfDefine> section is used to mark directives that are conditional. The directives within an @@ -664,7 +667,7 @@ if a test is true at startup

    <IfModule> Directive
    Description: Encloses directives that are processed conditional on the presence of absence of a specific module
    Syntax:<IfModule [!]module-name> ... - </IfModule>
    Context:server config, virtual host, directory, .htaccess
    Status:Core
    Module:core
    + </IfModule>
    Context:server config, virtual host, directory, .htaccess
    Override:All
    Status:Core
    Module:core

    The <IfModule test>...</IfModule> section is used to mark directives that are conditional. The directives within an @@ -696,7 +699,7 @@ presence of absence of a specific moduleInclude Directive
    Description: Includes other configuration files from within -the server configuration files
    Syntax:Include file-path|directory-path
    Context:server config
    Status:Core
    Module:core
    +the server configuration filesSyntax:Include file-path|directory-pathContext:server config, virtual host, directoryStatus:CoreModule:core

    This directive allows inclusion of other configuration files from within the server configuration files.

    @@ -741,7 +744,7 @@ the server configuration filesapachectl

    KeepAlive Directive

    Description: Turns on or off HTTP persistent connections.
    Syntax:KeepAlive on|off
    Default:KeepAlive On
    Context:server config
    Status:Core
    Module:core
    +

    See also


    KeepAlive Directive

    Description: Enables HTTP persistent connections
    Syntax:KeepAlive on|off
    Default:KeepAlive On
    Context:server config
    Status:Core
    Module:core

    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 @@ -761,7 +764,7 @@ the server configuration filesMaxKeepAliveRequests


    KeepAliveTimeout Directive

    Description: Sets the amount of time the server will wait for subsequent +

    See also


    KeepAliveTimeout Directive

    Description: Amount of time the server will wait for subsequent requests on a persistent connection
    Syntax:KeepAliveTimeout seconds
    Default:KeepAliveTimeout 15
    Context:server config
    Status:Core
    Module:core

    The number of seconds Apache will wait for a subsequent request before closing the connection. Once a request has been @@ -772,9 +775,9 @@ requests on a persistent connection

    <Limit> Directive
    Description: Restrict access controls to only certain HTTP +

    <Limit> Directive

    Description: Restrict enclosed access controls to only certain HTTP methods
    Syntax:<Limit method [method] ... > ... - </Limit>
    Context:server config, virtual host, directory, .htaccess
    Status:Core
    Module:core
    + </Limit>
    Context:server config, virtual host, directory, .htaccess
    Override:All
    Status:Core
    Module:core

    Access controls are normally effective for all access methods, and this is the usual desired behavior. In the general case, access control @@ -801,7 +804,7 @@ methods

    Synta HEAD requests.


    <LimitExcept> Directive

    Description: Restrict access controls to all HTTP methods except the named ones
    Syntax:<LimitExcept method [method] ... > ... - </LimitExcept>
    Context:server config, virtual host, directory, .htaccess
    Status:Core
    Module:core
    + </LimitExcept>
    Context:server config, virtual host, directory, .htaccess
    Override:All
    Status:Core
    Module:core

    <LimitExcept> and </LimitExcept> are used to enclose a group of access control directives which will then apply to any @@ -819,7 +822,7 @@ except the named ones


    LimitRequestBody Directive

    Description: Restricts the total size of the HTTP request body sent -from the client
    Syntax:LimitRequestBody bytes
    Default:LimitRequestBody 0
    Context:server config, virtual host, directory, .htaccess
    Status:Core
    Module:core
    +from the clientSyntax:LimitRequestBody bytesDefault:LimitRequestBody 0Context:server config, virtual host, directory, .htaccessOverride:AllStatus:CoreModule:core

    This directive specifies the number of bytes from 0 (meaning unlimited) to 2147483647 (2GB) that are allowed in a request body. The default value is defined by the compile-time @@ -1139,7 +1142,7 @@ matching URLs
    LogLevel notice
    -


    MaxKeepAliveRequests Directive

    Description: Sets the number of requests allowed on a persistent +

    MaxKeepAliveRequests Directive

    Description: Number of requests allowed on a persistent connection
    Syntax:MaxKeepAliveRequests number
    Default:MaxKeepAliveRequests 100
    Context:server config
    Status:Core
    Module:core

    The MaxKeepAliveRequests directive limits the number of requests allowed per connection when @@ -1151,7 +1154,7 @@ connection

    Sy

    For example:

    MaxKeepAliveRequests 500
    -

    NameVirtualHost Directive

    Description: Configures an IP address for name-virtual +

    NameVirtualHost Directive

    Description: Designates an IP address for name-virtual hosting
    Syntax:NameVirtualHost addr[:port]
    Context:server config
    Status:Core
    Module:core

    The NameVirtualHost directive is a required directive if you want to configure name-based virtual hosts.

    @@ -1347,8 +1350,7 @@ a resource
    Sy <Limit> section.

    See also


    RLimitCPU Directive

    Description: Limits the CPU consumption of processes launched -by Apache children
    Syntax:RLimitCPU number|max [number|max]
    Default:Unset; uses operating system defaults
    Context:server config, virtual host
    Status:Core
    Module:core
    Compatibility:Moved in version 2.0 to - the MPMs
    +by Apache children
    Syntax:RLimitCPU number|max [number|max]
    Default:Unset; uses operating system defaults
    Context:server config, virtual host
    Status:Core
    Module:core

    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, @@ -1367,7 +1369,7 @@ by Apache children

    RLimitMEM
  • RLimitNPROC

  • RLimitMEM Directive

    Description: Limits the memory consumption of processes launched -by Apache children
    Syntax:RLimitMEM number|max [number|max]
    Default:Unset; uses operating system defaults
    Context:server config, virtual host
    Status:Core
    Module:core
    Compatibility:Moved in version 2.0 to the MPMs.
    +by Apache children
    Syntax:RLimitMEM number|max [number|max]
    Default:Unset; uses operating system defaults
    Context:server config, virtual host
    Status:Core
    Module:core

    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, @@ -1386,7 +1388,7 @@ by Apache childrenRLimitCPU

  • RLimitNPROC

  • RLimitNPROC Directive

    Description: Limits the number of processes that can be launched by -processes launched by Apache children
    Syntax:RLimitNPROC number|max [number|max]
    Default:Unset; uses operating system defaults
    Context:server config, virtual host
    Status:Core
    Module:core
    Compatibility:Moved in version 2.0 to the MPMs.
    +processes launched by Apache childrenSyntax:RLimitNPROC number|max [number|max]Default:Unset; uses operating system defaultsContext:server config, virtual hostStatus:CoreModule:core

    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, @@ -1410,8 +1412,8 @@ processes launched by Apache childrenRLimitMEM

  • RLimitCPU

  • Satisfy Directive

    Description: Configures how host-level access control and user authentication -interact
    Syntax:Satisfy any|all
    Default:Satisfy all
    Context:directory, .htaccess
    Status:Core
    Module:core
    +

    See also


    Satisfy Directive

    Description: Interaction between host-level access control and +user authentication
    Syntax:Satisfy any|all
    Default:Satisfy all
    Context:directory, .htaccess
    Override:AuthConfig
    Status:Core
    Module:core

    Access policy if both Allow and Require used. The parameter can be either 'all' or 'any'. This directive is only useful if access to a particular area is being restricted by both @@ -1435,15 +1437,15 @@ interactSynt Satisfy any -

    See also


    ScriptInterpreterSource Directive

    Description: Controls how the interpreter for CGI scripts is -located
    Syntax:ScriptInterpreterSource registry|script
    Default:ScriptInterpreterSource script
    Context:directory, .htaccess
    Status:Core
    Module:core
    Compatibility:Win32 only
    +

    See also


    ScriptInterpreterSource Directive

    Description: Technique for locating the interpreter for CGI +scripts
    Syntax:ScriptInterpreterSource registry|script
    Default:ScriptInterpreterSource script
    Context:directory, .htaccess
    Override:FileInfo
    Status:Core
    Module:core
    Compatibility:Win32 only

    This directive is used to control how Apache finds the interpreter used to run CGI scripts. The default technique is to use the interpreter pointed to by the #! line in the script. Setting ScriptInterpreterSource registry will cause the Windows Registry to be searched using the script file extension (e.g., .pl) as a search key.

    -

    ServerAdmin Directive

    Description: Sets the email address that the server includes in error +

    ServerAdmin Directive

    Description: Email address that the server includes in error messages sent to the client
    Syntax:ServerAdmin email-address
    Context:server config, virtual host
    Status:Core
    Module:core

    The ServerAdmin sets the e-mail address that the server includes in any error messages it returns to the @@ -1454,7 +1456,7 @@ messages sent to the client

    ServerAdmin www-admin@foo.bar.com

    as users do not always mention that they are talking about the server!

    -

    ServerAlias Directive

    Description: Sets alternate names for a host used when matching requests +

    ServerAlias Directive

    Description: Alternate names for a host used when matching requests to name-virtual hosts
    Syntax:ServerAlias hostname [hostname] ...
    Context:virtual host
    Status:Core
    Module:core

    The ServerAlias directive sets the alternate names for a host, for use with name-based virtual hosts.

    @@ -1466,7 +1468,7 @@ to name-virtual hosts
    </VirtualHost>
    -

    See also


    ServerName Directive

    Description: Sets the hostname and port that the server uses to identify +

    See also


    ServerName Directive

    Description: Hostname and port that the server uses to identify itself
    Syntax:ServerName fully-qualified-domain-name[:port]
    Context:server config, virtual host
    Status:Core
    Module:core
    Compatibility:In version 2.0, this directive supersedes the functionality of the Port directive from version 1.3.
    @@ -1501,11 +1503,11 @@ itself
    Syntax specified port, or to the port number given in the client's request.

    See also


    ServerPath Directive

    Description: Sets the legacy URL pathname for a name-virtual host that + documentation
  • UseCanonicalName
  • NameVirtualHost
  • ServerAlias

  • ServerPath Directive

    Description: Legacy URL pathname for a name-virtual host that is accessed by an incompatible browser
    Syntax:ServerPath directory-path
    Context:virtual host
    Status:Core
    Module:core

    The ServerPath directive sets the legacy URL pathname for a host, for use with name-based virtual hosts.

    -

    See also


    ServerRoot Directive

    Description: Sets the base directory for the server installation
    Syntax:ServerRoot directory-path
    Default:ServerRoot /usr/local/apache
    Context:server config
    Status:Core
    Module:core
    +

    See also


    ServerRoot Directive

    Description: Base directory for the server installation
    Syntax:ServerRoot directory-path
    Default:ServerRoot /usr/local/apache
    Context:server config
    Status:Core
    Module:core

    The ServerRoot directive sets the directory in which the server lives. Typically it will contain the subdirectories conf/ and logs/. Relative @@ -1514,7 +1516,7 @@ is accessed by an incompatible browser

    the -d option to httpd
  • the security tips for information on how to properly set - permissions on the ServerRoot

  • ServerSignature Directive

    Description: Configures the footer on server-generated documents
    Syntax:ServerSignature On|Off|EMail
    Default:ServerSignature Off
    Context:server config, virtual host, directory, .htaccess
    Status:Core
    Module:core
    + permissions on the ServerRoot

    ServerSignature Directive

    Description: Configures the footer on server-generated documents
    Syntax:ServerSignature On|Off|EMail
    Default:ServerSignature Off
    Context:server config, virtual host, directory, .htaccess
    Override:All
    Status:Core
    Module:core

    The ServerSignature directive allows the configuration of a trailing footer line under server-generated documents (error messages, mod_proxy ftp directory listings, @@ -1560,7 +1562,7 @@ is accessed by an incompatible browser

    SetHandler Directive
    Description: Forces all matching files to be processed by a -handler
    Syntax:SetHandler handler-name
    Context:server config, virtual host, directory, .htaccess
    Status:Core
    Module:core
    Compatibility:Moved into the core in Apache 2.0
    +handler
    Syntax:SetHandler handler-name
    Context:server config, virtual host, directory, .htaccess
    Override:FileInfo
    Status:Core
    Module:core
    Compatibility:Moved into the core in Apache 2.0

    When placed into an .htaccess file or a <Directory> or <Location> @@ -1584,7 +1586,7 @@ handler

    Synta </Location>

    SetInputFilter Directive

    Description: Sets the filters that will process client requests and POST -input
    Syntax:SetInputFilter filter[;filter...]
    Context:server config, virtual host, directory, .htaccess
    Status:Core
    Module:core
    +input
    Syntax:SetInputFilter filter[;filter...]
    Context:server config, virtual host, directory, .htaccess
    Override:FileInfo
    Status:Core
    Module:core

    The SetInputFilter directive sets the filter or filters which will process client requests and POST input when they are received by the server. This is in addition to @@ -1596,7 +1598,7 @@ input

    Syntax: by semicolons in the order in which they should process the content.

    See also


    SetOutputFilter Directive

    Description: Sets the filters that will process responses from the -server
    Syntax:SetOutputFilter filter [filter] ...
    Context:server config, virtual host, directory, .htaccess
    Status:Core
    Module:core
    +server
    Syntax:SetOutputFilter filter [filter] ...
    Context:server config, virtual host, directory, .htaccess
    Override:FileInfo
    Status:Core
    Module:core

    The SetOutputFilter directive sets the filters which will process responses from the server before they are sent to the client. This is in addition to any filters defined @@ -1616,7 +1618,7 @@ serverSyntax

    If more than one filter is specified, they must be separated by semicolons in the order in which they should process the content.

    -

    See also


    TimeOut Directive

    Description: Defines the amount of time the server will wait for +

    See also


    TimeOut Directive

    Description: Amount of time the server will wait for certain events before failing a request
    Syntax:TimeOut number
    Default:TimeOut 300
    Context:server config
    Status:Core
    Module:core

    The TimeOut directive currently defines the amount of time Apache will wait for three things:

    @@ -1639,7 +1641,7 @@ certain events before failing a request
    UseCanonicalName Directive
    Description: Configures how the server determines its own name and -port
    Syntax:UseCanonicalName on|off|dns
    Default:UseCanonicalName on
    Context:server config, virtual host, directory, .htaccess
    Override:Options
    Status:Core
    Module:core
    +port
    Syntax:UseCanonicalName on|off|dns
    Default:UseCanonicalName on
    Context:server config, virtual host, directory
    Status:Core
    Module:core

    In many situations Apache has to construct a self-referential URL. That is, a URL which refers back to the same server. With UseCanonicalName on Apache will -- 2.40.0