|
Apache HTTP Server Version 1.3Apache Core FeaturesThese configuration parameters control the core Apache features, and are always available. Directives
AccessConfig directiveSyntax: AccessConfig filenameDefault: AccessConfig conf/access.conf Context: server config, virtual host Status: core The server will read this file for more directives after reading the ResourceConfig file. Filename is relative to the ServerRoot. This feature can be disabled using:
Historically, this file only contained
<Directory> sections; in fact it can now
contain any server directive allowed in the server config context.
AccessFileName directiveSyntax: AccessFileName filename filename ...Default: AccessFileName .htaccess Context: server config, virtual host Status: core Compatibility: AccessFileName can accept more than one filename only in Apache 1.3 and later 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:
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
AddModule directiveSyntax: AddModule module module ...Context: server config Status: core Compatibility: AddModule is only available in Apache 1.2 and later The server can have modules compiled in which are not actively in use. This directive can be used to enable the use of those modules. The server comes with a pre-loaded list of active modules; this list can be cleared with the ClearModuleList directive. AllowOverride directiveSyntax: AllowOverride override override ...Default: AllowOverride All Context: directory Status: 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.
Override can be set to
AuthName directiveSyntax: AuthName auth-domainContext: directory, .htaccess Override: AuthConfig Status: 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. It must be accompanied by AuthType and require directives, and directives such as AuthUserFile and AuthGroupFile to work. AuthType directiveSyntax: AuthType typeContext: directory, .htaccess Override: AuthConfig Status: core
This directive selects the type of user authentication for a directory.
Only BindAddress directiveSyntax: BindAddress saddrDefault: BindAddress * Context: server config Status: core A Unix® http server can either listen for connections to every IP address of the server machine, or just one IP address of the server machine. Saddr can be If the value is *, then the server will listen for connections on every IP address, otherwise it will only listen on the IP address specified.
Only one
See Also:
DNS Issues BS2000AuthFile directiveSyntax: BS2000AuthFile authfileDefault: none Context: server config Status: core Compatibility: BS2000AuthFile is only available for BS2000 machines, as of Apache 1.3 and later.
The
See Also: Apache EBCDIC port ClearModuleList directiveSyntax: ClearModuleListContext: server config Status: core Compatibility: ClearModuleList is only available in Apache 1.2 and later The server comes with a built-in list of active modules. This directive clears the list. It is assumed that the list will then be re-populated using the AddModule directive. ContentDigest directiveSyntax: ContentDigest on|offDefault: ContentDigest off Context: server config, virtual host, directory, .htaccess Override: AuthConfig Status: experimental Compatibility: ContentDigest is only available in Apache 1.1 and later
This directive enables the generation of 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: 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).
CoreDumpDirectory directiveSyntax: CoreDumpDirectory directoryDefault: the same location as ServerRoot Context: server config Status: core This controls the directory to which Apache attempts to switch before dumping core. The default is in the ServerRoot directory, however since this should not be writable by the user the server runs as, core dumps won't normally get written. If you want a core dump for debugging, you can use this directive to place it in a different location. DefaultType directiveSyntax: DefaultType mime-typeDefault: DefaultType text/html Context: server config, virtual host, directory, .htaccess Override: FileInfo Status: core 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 must inform the client of the content-type of the document, so in
the event of an unknown type it uses the
would be appropriate for a directory which contained many gif images
with filenames missing the .gif extension.<Directory> directiveSyntax: <Directory directory> ... </Directory>Context: server config, virtual host Status: 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 in a directory context may be used. Directory 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. As of Apache 1.3, 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 behaviour of Unix shells. Example: <Directory /usr/local/httpd/htdocs> Options Indexes FollowSymLinks </Directory> Apache 1.2 and above:
Extended regular expressions can also be used, with the addition of the
<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 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
for access to the document /home/web/dir/doc.html the
steps are:
Regular expression directory sections are handled slightly differently by Apache 1.2 and 1.3. In Apache 1.2 they are interspersed with the normal directory sections and applied in the order they appear in the configuration file. They are applied only once, and apply when the shortest match possible occurs. In Apache 1.3 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
Suppose that the filename being accessed is
/home/abc/public_html/abc/index.html . The server
considers each of / , /home , /home/abc ,
/home/abc/public_html , and /home/abc/public_html/abc
in that order. In Apache 1.2, when
/home/abc is considered, the regular expression will match
and be applied. In Apache 1.3 the regular expression isn't considered
at all at that point in the tree. It 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 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 typically occur in the access.conf file, but they may appear in any configuration file. <Directory> directives cannot nest, and cannot appear in a <Limit> 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>Syntax: <DirectoryMatch regex> ... </DirectoryMatch>Context: server config, virtual host Status: Core. Compatibility: Available in Apache 1.3 and later <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.
DocumentRoot directiveSyntax: DocumentRoot directory-filenameDefault: DocumentRoot
/usr/local/apache/htdocs Context: server config, virtual host Status: 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:
then an access to http://www.my.host.com/index.html refers
to /usr/web/index.html .
There appears to be a bug in mod_dir which causes problems when the DocumentRoot has a trailing slash (i.e. "DocumentRoot /usr/web/") so please avoid that. ErrorDocument directiveSyntax: ErrorDocument error-code documentContext: server config, virtual host, directory, .htaccess Status: core Override: FileInfo Compatibility: The directory and .htaccess contexts are only available in Apache 1.1 and later. 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 Messages in this context begin with a single quote
( URLs can begin with a slash (/) for local URLs, or be a full URL which the client can resolve. Examples:
Note that when you specify an See Also: documentation of customizable responses. ErrorLog directiveSyntax: ErrorLog filename|syslog
Default: ErrorLog logs/error_log Context: server config, virtual host Status: core The error log directive sets the name of the file to which the server will log any errors it encounters. If the filename does not begin with a slash (/) then it is assumed to be relative to the ServerRoot. If the filename begins with a pipe (|) then it is assumed to be a command to spawn to handle the error log. Apache 1.3 and above:
Using SECURITY: See the security tips document for details on why your security could be compromised if the directory where logfiles are stored is writable by anyone other than the user that starts the server. See also: LogLevel <Files> directiveSyntax: <Files filename> ... </Files>Context: server config, virtual host, .htaccess Status: core Compatibility: only available in Apache 1.2 and above.
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 specified filename.
The filename argument should include a filename, or a
wild-card string, where `?' matches any single character, and `*' matches any
sequences of characters. Extended regular expressions can also be used,
with the addition of
the <Files ~ "\.(gif|jpe?g|png)$">would match most common Internet graphics formats. In Apache 1.3 and later, <FilesMatch> is preferred, however. Note that unlike See also: How Directory, Location and Files sections work for an explanation of how these different sections are combined when a request is received <FilesMatch>Syntax: <FilesMatch regex> ... </Files>Context: server config, virtual host, .htaccess Status: core Compatibility: only available in Apache 1.3 and above.
The <FilesMatch> directive provides for access control by filename, just as the <Files> directive does. However, it accepts a regular expression. For example: <FilesMatch "\.(gif|jpe?g|png)$"> would match most common Internet graphics formats. See also: How Directory, Location and Files sections work for an explanation of how these different sections are combined when a request is receivedGroup directiveSyntax: Group unix-groupDefault: Group #-1 Context: server config, virtual host Status: core The Group directive sets the group under which the server will answer requests. In order to use this directive, the stand-alone server must be run initially as root. Unix-group is one of:
nobody , but this is not always
possible or desirable.Note: if you start the server as a non-root user, it will fail to change to the specified group, and will instead continue to run as the group of the original user. Special note: Use of this directive in <VirtualHost> requires a properly configured suEXEC wrapper. When used inside a <VirtualHost> in this manner, only the group that CGIs are run as is affected. Non-CGI requests are still processed as the group specified in the main Group directive. SECURITY: See User for a discussion of the security considerations. HostNameLookups directiveSyntax: HostNameLookups on | off | doubleDefault: HostNameLookups off Context: server config, virtual host, directory, .htaccess Status: core Compatibility: double available only in
Apache
1.3 and above.Compatibility: Default was on prior to
Apache 1.3.
This directive enables DNS lookups so that host names can be logged (and
passed to CGIs/SSIs in
Regardless of the setting, when mod_access
is used for controlling access by hostname, a double reverse lookup
will be performed. This is necessary for security. Note that the
result of this double-reverse isn't generally available unless
you set
The default for this directive was previously IdentityCheck directiveSyntax: IdentityCheck booleanDefault: IdentityCheck off Context: server config, virtual host, directory Status: 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 the access log. Boolean is either
The information should not be trusted in any way except for rudimentary usage tracking. Note that this can cause serious latency problems accessing your server since every request requires one of these lookups to be performed. When firewalls are involved each lookup might possibly fail and add 30 seconds of latency to each hit. So in general this is not very useful on public servers accessible from the Internet. <IfModule> directiveSyntax: <IfModule [!]module-name> ... </IfModule>Default: None Context: all Status: Core Compatibility: IfModule is only available in 1.2 and later.
The <IfModule test>...</IfModule> section is used to mark directives that are conditional. The directives within an IfModule section are only processed if the test is true. If test is false, everything between the start and end markers is ignored. The test in the <IfModule> section directive can be one of two forms:
In the former case, the directives between the start and end markers are only processed if the module named module name is compiled in to Apache. The second format reverses the test, and only processes the directives if module name is not compiled in. The module name argument is a module name as given as the file
name of the module, at the time it was compiled. For example,
<IfModule> sections are nest-able, which can be used to implement simple multiple-module tests.
Include directiveSyntax: (Apache 1.2) Include filenameContext: server config Status: Core Compatibility: Include is only available in Apache 1.3 and later. This directive allows inclusion of other configuration files from within the server configuration files.
KeepAlive directiveSyntax: (Apache 1.1) KeepAlive max-requestsDefault: (Apache 1.1) KeepAlive 5 Syntax: (Apache 1.2) KeepAlive on/off Default: (Apache 1.2) KeepAlive On Context: server config Status: Core Compatibility: KeepAlive is only available in Apache 1.1 and later. This directive enables Keep-Alive support. Apache 1.1: Set max-requests
to the maximum number of requests you want Apache to entertain per
request. A limit is imposed to prevent a client from hogging your
server resources. Set this to Apache 1.2 and later: Set to "On" to enable persistent connections, "Off" to disable. See also the MaxKeepAliveRequests directive. KeepAliveTimeout directiveSyntax: KeepAliveTimeout secondsDefault: KeepAliveTimeout 15 Context: server config Status: Core Compatibility: KeepAliveTimeout is only available in Apache 1.1 and later.
The number of seconds Apache will wait for a subsequent request before
closing the connection. Once a request has been received, the timeout
value specified by the <Limit> directiveSyntax: <Limit method method ... > ... </Limit>Context: any Status: core <Limit> and </Limit> are used to enclose a group of access control directives which will then apply only to the specified access methods, where method is any valid HTTP method. Any directive except another <Limit> or <Directory> may be used; the majority will be unaffected by the <Limit>. Example:
If an access control directive appears outside a <Limit>
directive, then it applies to all access methods. The method names
listed can be one or more of: GET, POST, PUT, DELETE, CONNECT or
OPTIONS. If GET is used it will also restrict HEAD requests.
If you wish to limit all methods, do not include any
<Limit> directive at all. Listen directiveSyntax: Listen [IP address:]port numberContext: server config Status: core Compatibility: Listen is only available in Apache 1.1 and later.
The Listen directive instructs Apache to listen to more than one IP
address or port; by default it responds to requests on all IP
interfaces, but only on the port given by the Note that you may still require a Port directive so that URLs that Apache generates that point to your server still work. Multiple Listen directives may be used to specify a number of addresses and ports to listen to. The server will respond to requests from any of the listed addresses and ports. For example, to make the server accept connections on both port 80 and port 8000, use: Listen 80 Listen 8000To make the server accept connections on two specified interfaces and port numbers, use Listen 192.170.2.1:80 Listen 192.170.2.5:8000 See Also:
DNS Issues ListenBacklog directiveSyntax: ListenBacklog backlogDefault: ListenBacklog 511 Context: server config Status: Core Compatibility: ListenBacklog is only available in Apache versions after 1.2.0.
The maximum length of the queue of pending connections. Generally no
tuning is needed or desired, however on some systems it is desirable
to increase this when under a TCP SYN flood attack. See
the backlog parameter to the <Location> directiveSyntax: <Location URL> ... </Location>Context: server config, virtual host Status: core Compatibility: Location is only available in Apache 1.1 and later.
The <Location> directive provides for access control by
URL. It is similar to the <Directory> directive, and
starts a subsection which is terminated with a </Location>
directive. Note that URLs do not have to line up with the filesystem at all, it should be emphasized that <Location> operates completely outside the filesystem. For all origin (non-proxy) requests, the URL to be matched is
of the form The URL may use wildcards In a wild-card string, `?' matches any single character, and `*' matches any sequences of characters. Apache 1.2 and above:
Extended regular expressions can also be used, with the addition of
the <Location ~ "/(extra|special)/data"> would match URLs that contained the substring "/extra/data" or
"/special/data". In Apache 1.3 and above, a new directive
<LocationMatch> exists which
behaves identical to the regex version of
The <Location /status> SetHandler server-status order deny,allow deny from all allow from .foo.com </Location> Apache 1.3 and above note about / (slash): The slash
character has special
meaning depending on where in a URL it appears. People may be used
to its behaviour in the filesystem where multiple adjacent slashes are
frequently collapsed to a single slash (i.e. See also: How Directory, Location and Files sections work for an explanation of how these different sections are combined when a request is received <LocationMatch>Syntax: <LocationMatch regex> ... </LocationMatch>Context: server config, virtual host Status: core Compatibility: Location is only available in Apache 1.3 and later.
The <LocationMatch> directive provides for access control by URL, in an identical manner to <Location>. However, it takes a regular expression as an argument instead of a simple string. For example: <LocationMatch "/(extra|special)/data"> would match URLs that contained the substring "/extra/data" or "/special/data". See also: How Directory, Location and Files sections work for an explanation of how these different sections are combined when a request is receivedLockFile directiveSyntax: LockFile filenameDefault: LockFile logs/accept.lock Context: server config Status: core
The LockFile directive sets the path to the lockfile used when
Apache is compiled with either USE_FCNTL_SERIALIZED_ACCEPT or
USE_FLOCK_SERIALIZED_ACCEPT. This directive should normally be
left at its default value. The main reason for changing it is if
the
SECURITY: It is best to avoid putting this file in a
world writable directory such as
LogLevel directiveSyntax: LogLevel levelDefault: LogLevel error Context: server config, virtual host Status: core Compatibility: LogLevel is only available in 1.3 or later. LogLevel adjusts the verbosity of the messages recorded in the error logs (see ErrorLog directive). The following levels are available, in order of decreasing significance:
When a particular level is specified, messages from all other levels
of higher significance will be reported as well. E.g., when
Using a level of at least MaxClients directiveSyntax: MaxClients numberDefault: MaxClients 256 Context: server config Status: core The MaxClients directive sets the limit on the number of simultaneous requests that can be supported; not more than this number of child server processes will be created. To configure more than 256 clients, you must edit the HARD_SERVER_LIMIT entry in httpd.h and recompile. MaxKeepAliveRequests directiveSyntax: MaxKeepAliveRequests numberDefault: MaxKeepAliveRequests 100 Context: server config Status: core Compatibility: Only available in Apache 1.2 and later. The MaxKeepAliveRequests directive limits the number of requests
allowed per connection when KeepAlive is
on. If it is set to " MaxRequestsPerChild directiveSyntax: MaxRequestsPerChild numberDefault: MaxRequestsPerChild 0 Context: server config Status: core The MaxRequestsPerChild directive sets the limit on the number of requests that an individual child server process will handle. After MaxRequestsPerChild requests, the child process will die. If MaxRequestsPerChild is 0, then the process will never expire. Setting MaxRequestsPerChild to a non-zero limit has two beneficial effects:
This directive has no effect on Win32. MaxSpareServers directiveSyntax: MaxSpareServers numberDefault: MaxSpareServers 10 Context: server config Status: core The MaxSpareServers directive sets the desired maximum number of idle child server processes. An idle process is one which is not handling a request. If there are more than MaxSpareServers idle, then the parent process will kill off the excess processes. Tuning of this parameter should only be necessary on very busy sites. Setting this parameter to a large number is almost always a bad idea. This directive has no effect when used with the Apache Web server on a Microsoft Windows platform. See also MinSpareServers and StartServers. MinSpareServers directiveSyntax: MinSpareServers numberDefault: MinSpareServers 5 Context: server config Status: core The MinSpareServers directive sets the desired minimum number of idle child server processes. An idle process is one which is not handling a request. If there are fewer than MinSpareServers idle, then the parent process creates new children at a maximum rate of 1 per second. Tuning of this parameter should only be necessary on very busy sites. Setting this parameter to a large number is almost always a bad idea. This directive has no effect on Microsoft Windows. See also MaxSpareServers and StartServers. NameVirtualHost directiveSyntax: NameVirtualHost addr[:port]Context: server config Status: core Compatibility: NameVirtualHost is only available in Apache 1.3 and later The NameVirtualHost directive is a required directive if you want to configure name-based virtual hosts. Although addr can be hostname it is recommended that you always use an IP address, e.g.
With the NameVirtualHost directive you specify the address to which your
name-based virtual host names resolve. If you have multiple name-based
hosts on multiple addresses, repeat the directive for each address.Note: the "main server" and any _default_ servers will never be served for a request to a NameVirtualHost IP Address (unless for some reason you specify NameVirtualHost but then don't define any VirtualHosts for that address). Optionally you can specify a port number on which the name-based virtual hosts should be used, e.g.
See also:
Apache Virtual Host documentation
Options directiveSyntax: Options [+|-]option [+|-]option ...Context: server config, virtual host, directory, .htaccess Override: Options Status: core The Options directive controls which server features are available in a particular directory.
option can be set to
Options could apply to a directory,
then the most specific one is taken complete; the options are not
merged. However if all the options on the Options
directive are preceded by a + 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. For example, without any + and - symbols:
then only Includes will be set for the /web/docs/spec
directory. However if the second Options directive uses the +
and - symbols:
then the options FollowSymLinks and Includes
are set for the /web/docs/spec directory.
Note: Using
The default in the absence of any other settings is
PidFile directiveSyntax: PidFile filenameDefault: PidFile logs/httpd.pid Context: server config Status: core The PidFile directive sets the file to which the server records the process id of the daemon. If the filename does not begin with a slash (/) then it is assumed to be relative to the ServerRoot. The PidFile is only used in standalone mode. It is often useful to be able to send the server a signal, so that it closes and then reopens its ErrorLog and TransferLog, and re-reads its configuration files. This is done by sending a SIGHUP (kill -1) signal to the process id listed in the PidFile. The PidFile is subject to the same warnings about log file placement and security. Port directiveSyntax: Port numberDefault: Port 80 Context: server config Status: core
Number is a number from 0 to 65535; some port numbers
(especially below
1024) are reserved for particular protocols. See The Port directive has two behaviors, the first of which is necessary for NCSA backwards compatibility (and which is confusing in the context of Apache).
The primary behaviour of Port should be considered to be similar to that of the ServerName directive. The ServerName and Port together specify what you consider to be the canonical address of the server. (See also UseCanonicalName.) Port 80 is one of Unix's special ports. All ports numbered below 1024 are reserved for system use, i.e. regular (non-root) users cannot make use of them; instead they can only use higher port numbers. To use port 80, you must start the server from the root account. After binding to the port and before accepting requests, Apache will change to a low privileged user as set by the User directive. If you cannot use port 80, choose any other unused port. Non-root users will have to choose a port number higher than 1023, such as 8000. SECURITY: if you do start the server as root, be sure not to set User to root. If you run the server as root whilst handling connections, your site may be open to a major security attack. require directiveSyntax: require entity-name entity entity...Context: directory, .htaccess Override: AuthConfig Status: core This directive selects which authenticated users can access a directory. The allowed syntaxes are:
If
Require must be accompanied by AuthName and
AuthType directives, and directives such as
AuthUserFile and
AuthGroupFile (to define users and
groups) in order to work correctly.ResourceConfig directiveSyntax: ResourceConfig filenameDefault: ResourceConfig conf/srm.conf Context: server config, virtual host Status: core The server will read this file for more directives after reading the httpd.conf file. Filename is relative to the ServerRoot. This feature can be disabled using:
Historically, this file contained most directives except for server
configuration directives and <Directory>
sections; in fact it can now contain any server directive allowed in the
server config context.See also AccessConfig. RLimitCPU directiveSyntax: RLimitCPU # or 'max' [# or 'max']Default: Unset; uses operating system defaults Context: server config, virtual host Status: core Compatibility: RLimitCPU is only available in Apache 1.2 and later 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. CPU resource limits are expressed in seconds per process. See also RLimitMEM or RLimitNPROC. RLimitMEM directiveSyntax: RLimitMEM # or 'max' [# or 'max']Default: Unset; uses operating system defaults Context: server config, virtual host Status: core Compatibility: RLimitMEM is only available in Apache 1.2 and later 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. Memory resource limits are expressed in bytes per process. See also RLimitCPU or RLimitNPROC. RLimitNPROC directiveSyntax: RLimitNPROC # or 'max' [# or 'max']Default: Unset; uses operating system defaults Context: server config, virtual host Status: core Compatibility: RLimitNPROC is only available in Apache 1.2 and later 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. Process limits control the number of processes per user. Note: If CGI processes are not running under userids other than the web server userid, 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. See also RLimitMEM or RLimitCPU. Satisfy directiveSyntax: Satisfy 'any' or 'all'Default: Satisfy all Context: directory, .htaccess Status: core Compatibility: Satisfy is only available in Apache 1.2 and later 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 username/password and client host address. In this case the default behavior ("all") is to require that the client passes the address access restriction and enters a valid username and password. With the "any" option the client will be granted access if they either pass the host restriction or enter a valid username and password. This can be used to password restrict an area, but to let clients from particular addresses in without prompting for a password. ScoreBoardFile directiveSyntax: ScoreBoardFile filenameDefault: ScoreBoardFile logs/apache_status
Context: server config Status: core The ScoreBoardFile directive is required on some architectures to place a file that the server will use to communicate between its children and the parent. The easiest way to find out if your architecture requires a scoreboard file is to run Apache and see if it creates the file named by the directive. If your architecture requires it then you must ensure that this file is not used at the same time by more than one invocation of Apache. If you have to use a ScoreBoardFile then you may see improved speed by placing it on a RAM disk. But be careful that you heed the same warnings about log file placement and security. Apache 1.2 and above:
Linux 1.x users might be able to add
SVR4 users should consider adding
See Also: Stopping and Restarting Apache SendBufferSize directiveSyntax: SendBufferSize bytesContext: server config Status: core The server will set the TCP buffer size to the number of bytes specified. Very useful to increase past standard OS defaults on high speed high latency (i.e. 100ms or so, such as transcontinental fast pipes) ServerAdmin directiveSyntax: ServerAdmin email-addressContext: server config, virtual host Status: core The ServerAdmin sets the e-mail address that the server includes in any error messages it returns to the client. 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!ServerAlias directiveSyntax: ServerAlias host1 host2 ...Context: virtual host Status: core Compatibility: ServerAlias is only available in Apache 1.1 and later. The ServerAlias directive sets the alternate names for a host, for use with name-based virtual hosts. See also: Apache Virtual Host documentation ServerName directiveSyntax: ServerName fully-qualified domain nameContext: server config, virtual host Status: core The ServerName directive sets the hostname of the server; this is only used when creating redirection URLs. If it is not specified, then the server attempts to deduce it from its own IP address; however this may not work reliably, or may not return the preferred hostname. For example:
would be used if the canonical (main) name of the actual machine
were monster.wibble.com .
See Also: ServerPath directiveSyntax: ServerPath pathnameContext: virtual host Status: core Compatibility: ServerPath is only available in Apache 1.1 and later. The ServerPath directive sets the legacy URL pathname for a host, for use with name-based virtual hosts. See also: Apache Virtual Host documentation ServerRoot directiveSyntax: ServerRoot directory-filenameDefault: ServerRoot /usr/local/apache Context: server config Status: core
The ServerRoot directive sets the directory in which the server lives.
Typically it will contain the subdirectories
See also the See also the security tips for information on how to properly set permissions on the ServerRoot.
ServerSignature directiveSyntax: ServerSignature Off | On | EMailDefault: ServerSignature Off Context: server config, virtual host, directory, .htaccess Status: core Compatibility: ServerSignature is only available in Apache 1.3 and later.
The ServerSignature directive allows the configuration of a trailing
footer line under server-generated documents (error messages,
mod_proxy ftp directory listings, mod_info output, ...). The reason
why you would want to enable such a footer line is that in a chain
of proxies, the user often has no possibility to tell which of the
chained servers actually produced a returned error message. ServerTokens directiveSyntax: ServerTokens Minimal|OS|FullDefault: ServerTokens Full Context: server config Status: core Compatibility: ServerTokens is only available in Apache 1.3 and later This 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.
This setting applies to the entire server, and cannot be enabled or disabled on a virtualhost-by-virtualhost basis. ServerType directiveSyntax: ServerType typeDefault: ServerType standalone Context: server config Status: core The ServerType directive sets how the server is executed by the system. Type is one of
Standalone is the most common setting for ServerType since it is far more efficient. The server is started once, and services all subsequent connections. If you intend running Apache to serve a busy site, standalone will probably be your only option.
StartServers directiveSyntax: StartServers numberDefault: StartServers 5 Context: server config Status: core The StartServers directive sets the number of child server processes created on startup. As the number of processes is dynamically controlled depending on the load, there is usually little reason to adjust this parameter.
When running under Microsoft Windows, this directive has no effect. There is always one child which handles all requests. Within the child requests are handled by separate threads. The ThreadsPerChild directive controls the maximum number of child threads handling requests, which will have a similar effect to the setting of StartServers on Unix. See also MinSpareServers and MaxSpareServers. ThreadsPerChildSyntax: ThreadsPerChild numberDefault: ThreadsPerChild 50 Context: server config Status: core (Windows) Compatbility: Available only with Apache 1.3 and later with Windows This directive tells the server how many threads it should use. This is the maximum number of connections the server can handle at once; be sure and set this number high enough for your site if you get a lot of hits. This directive has no effect on Unix systems. Unix users should look at StartServers and MaxRequestsPerChild. TimeOut directiveSyntax: TimeOut numberDefault: TimeOut 300 Context: server config Status: core The TimeOut directive currently defines the amount of time Apache will wait for three things:
UseCanonicalName directiveSyntax: UseCanonicalName on|offDefault: UseCanonicalName on Context: server config, virtual host, directory, .htaccess Override: AuthConfig Compatibility: UseCanonicalName is only available in Apache 1.3 and later
In many situations Apache has to construct a self-referential
URL. That is, a URL which refers back to the same server.
With With 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
Warning: if CGIs make assumptions about the values of
See also: ServerName, Port User directiveSyntax: User unix-useridDefault: User #-1 Context: server config, virtual host Status: core The User directive sets the userid as which the server will answer requests. In order to use this directive, the standalone server must be run initially as root. Unix-userid is one of:
nobody , but this is not always possible or desirable.Notes: If you start the server as a non-root user, it will fail to change to the lesser privileged user, and will instead continue to run as that original user. If you do start the server as root, then it is normal for the parent process to remain running as root. Special note: Use of this directive in <VirtualHost> requires a properly configured suEXEC wrapper. When used inside a <VirtualHost> in this manner, only the user that CGIs are run as is affected. Non-CGI requests are still processed with the user specified in the main User directive.
SECURITY: Don't set User (or Group) to
<VirtualHost> directiveSyntax: <VirtualHost addr[:port] ...> ... </VirtualHost>Context: server config Status: Core. Compatibility: Non-IP address-based Virtual Hosting only available in Apache 1.1 and later. Compatibility: Multiple address support only available in Apache 1.2 and later. <VirtualHost> and </VirtualHost> are used to enclose a group of directives which will apply only to a particular virtual host. Any directive which 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 <VirtualHost> section. Addr can be Example:
Each VirtualHost must correspond to a different IP address, different port
number or a
different host name for the server, in the latter 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), or with kernel patches like VIF (for SunOS(TM) 4.1.x)).
The special name
You can specify a SECURITY: See the security tips document for details on why your security could be compromised if the directory where logfiles are stored is writable by anyone other than the user that starts the server. NOTE: The use of <VirtualHost> does not affect what addresses Apache listens on. You may need to ensure that Apache is listening on the correct addresses using either BindAddress or Listen. See also:
Apache Virtual Host documentation Apache HTTP Server Version 1.3 |
|||||||||||||||||||||||||||||||||||||||||||||||||||||
With any suggestions or questions please feel free to contact us |