mirror of
https://github.com/apache/httpd.git
synced 2025-12-24 15:01:03 +03:00
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@97319 13f79535-47bb-0310-9956-ffa450edef68
680 lines
27 KiB
XML
680 lines
27 KiB
XML
<?xml version="1.0"?>
|
|
<!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
|
|
<?xml-stylesheet type="text/xsl" href="../style/manual.en.xsl"?>
|
|
<modulesynopsis>
|
|
|
|
<name>mpm_common</name>
|
|
<description>A collection of directives that are implemented by
|
|
more than one multi-processing module (MPM)</description>
|
|
<status>MPM</status>
|
|
|
|
<directivesynopsis>
|
|
<name>CoreDumpDirectory</name>
|
|
<description>Directory where Apache attempts to
|
|
switch before dumping core</description>
|
|
<syntax>CoreDumpDirectory <var>directory</var></syntax>
|
|
<default>See usage for the default setting</default>
|
|
<contextlist><context>server config</context></contextlist>
|
|
<modulelist><module>worker</module><module>perchild</module>
|
|
<module>prefork</module><module>mpm_winnt</module>
|
|
</modulelist>
|
|
|
|
<usage>
|
|
|
|
<p>This controls the directory to which Apache attempts to
|
|
switch before dumping core. The default is in the
|
|
<directive module="core">ServerRoot</directive> 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.</p>
|
|
</usage>
|
|
</directivesynopsis>
|
|
|
|
<directivesynopsis>
|
|
<name>Group</name>
|
|
<description>Group under which the server will answer
|
|
requests</description>
|
|
<syntax>Group <var>unix-group</var></syntax>
|
|
<default>Group #-1</default>
|
|
<contextlist><context>server config</context><context>virtual host</context>
|
|
</contextlist>
|
|
<modulelist><module>worker</module><module>perchild</module>
|
|
<module>prefork</module></modulelist>
|
|
|
|
<usage>
|
|
<p>The <directive>Group</directive> 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.
|
|
<var>Unix-group</var> is one of:</p>
|
|
|
|
<dl>
|
|
<dt>A group name</dt>
|
|
|
|
<dd>Refers to the given group by name.</dd>
|
|
|
|
<dt># followed by a group number.</dt>
|
|
|
|
<dd>Refers to a group by its number.</dd>
|
|
</dl>
|
|
<p>It is recommended that you set up a new group specifically for
|
|
running the server. Some admins use user <code>nobody</code>,
|
|
but this is not always possible or desirable.</p>
|
|
|
|
<example>Group www-group</example>
|
|
|
|
<p>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.</p>
|
|
|
|
<p>Special note: Use of this directive in <VirtualHost> is
|
|
no longer supported. To implement the <a
|
|
href="../suexec.html">suEXEC wrapper</a> with Apache 2.0, use the
|
|
<directive module="mod_suexec">SuexecUserGroup</directive>
|
|
directive. SECURITY: See <directive
|
|
module="mpm_common">User</directive> for a discussion of the
|
|
security considerations.</p>
|
|
</usage>
|
|
</directivesynopsis>
|
|
|
|
<directivesynopsis>
|
|
<name>PidFile</name>
|
|
<description>File where the server records the process ID
|
|
of the daemon</description>
|
|
<syntax>PidFile <var>filename</var></syntax>
|
|
<default>PidFile logs/httpd.pid</default>
|
|
<contextlist><context>server config</context></contextlist>
|
|
<modulelist><module>worker</module><module>perchild</module>
|
|
<module>prefork</module><module>mpm_winnt</module>
|
|
</modulelist>
|
|
|
|
<usage>
|
|
<p>The <directive>PidFile</directive> 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 <directive module="core">ServerRoot</directive>.</p>
|
|
|
|
<example><title>Example</title>
|
|
PidFile /var/run/apache.pid
|
|
</example>
|
|
|
|
<p>It is often useful to be able to send the server a signal,
|
|
so that it closes and then reopens its <directive
|
|
module="core">ErrorLog</directive> 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.</p>
|
|
|
|
<p>The PidFile is subject to the same warnings about log file
|
|
placement and <a
|
|
href="../misc/security_tips.html#serverroot">security</a>.</p>
|
|
</usage>
|
|
</directivesynopsis>
|
|
|
|
<directivesynopsis>
|
|
<name>Listen</name>
|
|
<description>IP addresses and ports that the server
|
|
listens to</description>
|
|
<syntax>Listen [<var>IP-address</var>:]<var>portnumber</var></syntax>
|
|
<contextlist><context>server config</context></contextlist>
|
|
<modulelist><module>worker</module><module>perchild</module>
|
|
<module>prefork</module><module>mpm_winnt</module>
|
|
</modulelist>
|
|
|
|
<usage>
|
|
<p>The <directive>Listen</directive> directive instructs Apache to
|
|
listen to only specific IP addresses or ports; by default it
|
|
responds to requests on all IP interfaces. The Listen directive is
|
|
now a required directive. If it is not in the config file, the
|
|
server will fail to start. This is a change from previous versions
|
|
of Apache.</p>
|
|
|
|
<p>The Listen directive tells the server to accept incoming
|
|
requests on the specified port or address-and-port combination.
|
|
If only a port number is specified, the server listens to the
|
|
given port on all interfaces. If an IP address is given as well
|
|
as a port, the server will listen on the given port and
|
|
interface.</p>
|
|
|
|
<p>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.</p>
|
|
|
|
<p>For example, to make the server accept connections on both
|
|
port 80 and port 8000, use:</p>
|
|
|
|
<example>
|
|
Listen 80<br />
|
|
Listen 8000
|
|
</example>
|
|
|
|
<p>To make the server accept connections on two specified
|
|
interfaces and port numbers, use </p>
|
|
|
|
<example>
|
|
Listen 192.170.2.1:80<br />
|
|
Listen 192.170.2.5:8000
|
|
</example>
|
|
|
|
<p>IPv6 addresses must be surrounded in square brackets, as in the
|
|
following example:</p>
|
|
|
|
<example>
|
|
Listen [fe80::a00:20ff:fea7:ccea]:80
|
|
</example>
|
|
</usage>
|
|
|
|
<seealso><a href="../dns-caveats.html">DNS Issues</a></seealso>
|
|
<seealso><a href="../bind.html">Setting
|
|
which addresses and ports Apache uses</a></seealso>
|
|
</directivesynopsis>
|
|
|
|
<directivesynopsis>
|
|
<name>ListenBackLog</name>
|
|
<description>Maximum length of the queue of pending connections</description>
|
|
<syntax>ListenBacklog <var>backlog</var></syntax>
|
|
<default>ListenBacklog 511</default>
|
|
<contextlist><context>server config</context></contextlist>
|
|
<modulelist><module>worker</module><module>perchild</module>
|
|
<module>prefork</module><module>mpm_winnt</module>
|
|
</modulelist>
|
|
|
|
<usage>
|
|
<p>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
|
|
<code>listen(2)</code> system call.</p>
|
|
|
|
<p>This will often be limited to a smaller number by the
|
|
operating system. This varies from OS to OS. Also note that
|
|
many OSes do not use exactly what is specified as the backlog,
|
|
but use a number based on (but normally larger than) what is
|
|
set.</p>
|
|
</usage>
|
|
</directivesynopsis>
|
|
|
|
<directivesynopsis>
|
|
<name>LockFile</name>
|
|
<description>Location of the accept serialization lock file</description>
|
|
<syntax>LockFile <var>filename</var></syntax>
|
|
<default>LockFile logs/accept.lock</default>
|
|
<contextlist><context>server config</context></contextlist>
|
|
<modulelist><module>worker</module><module>perchild</module>
|
|
<module>prefork</module></modulelist>
|
|
|
|
<usage>
|
|
<p>The <directive>LockFile</directive> 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 <code>logs</code> directory is
|
|
NFS mounted, since <strong>the lockfile must be stored on a local
|
|
disk</strong>. The PID of the main server process is
|
|
automatically appended to the filename.</p>
|
|
|
|
<note type="warning"><title>Security:</title>
|
|
<p>It is best to avoid putting this file in a world writable directory
|
|
such as <code>/var/tmp</code> because someone could create a denial of
|
|
service attack and prevent the server from starting by creating
|
|
a lockfile with the same name as the one the server will try to
|
|
create.</p>
|
|
</note>
|
|
</usage>
|
|
</directivesynopsis>
|
|
|
|
<directivesynopsis>
|
|
<name>MaxClients</name>
|
|
<description>Maximum number of child processes that will be created
|
|
to serve requests</description>
|
|
<syntax>MaxClients <var>number</var></syntax>
|
|
<contextlist><context>server config</context></contextlist>
|
|
<modulelist><module>worker</module><module>prefork</module>
|
|
</modulelist>
|
|
|
|
<usage>
|
|
<p>The <directive>MaxClients</directive> directive sets the limit
|
|
on the number of simultaneous requests that will be served. Any
|
|
connection attempts over the <directive>MaxClients</directive>
|
|
limit will normally be queued, up to a number based on the
|
|
<directive module="mpm_common">ListenBacklog</directive>
|
|
directive. Once a child process is freed at the end of a different
|
|
request, the connection will then be serviced.</p>
|
|
|
|
<p>For non-threaded servers (i.e., <module>prefork</module>),
|
|
<directive>MaxClients</directive> translates into the maximum
|
|
number of child processes that will be launched to serve requests.
|
|
The default value is 256; to increase it, you must also raise
|
|
<directive module="mpm_common">ServerLimit</directive>.</p>
|
|
|
|
<p>For threaded servers (i.e., <module>worker</module>),
|
|
<directive>MaxClients</directive> restricts the total
|
|
number of threads that will be available to serve clients.
|
|
The default value is 16 multiplied by the value of
|
|
<directive module="mpm_common">ThreadsPerChild</directive>.
|
|
To increase <directive>MaxClients</directive> to a value
|
|
that requires more than 16 processes, you must also
|
|
raise <directive module="mpm_common">ServerLimit</directive>.</p>
|
|
</usage>
|
|
</directivesynopsis>
|
|
|
|
<directivesynopsis>
|
|
<name>MaxMemFree</name>
|
|
<description>Maximum amount of memory that the main allocator is allowed
|
|
to hold without calling free()</description>
|
|
<syntax>MaxMemFree <var>number</var></syntax>
|
|
<contextlist><context>server config</context></contextlist>
|
|
<modulelist><module>worker</module><module>prefork</module>
|
|
<module>mpm_netware</module>
|
|
</modulelist>
|
|
|
|
<usage>
|
|
<p>The <directive>MaxMemFree</directive> directive sets the
|
|
maximum number of free Kbytes that the main allocator is allowed
|
|
to hold without calling free(). When not set, or when set to
|
|
zero, the threshold will be set to unlimited.</p>
|
|
</usage>
|
|
</directivesynopsis>
|
|
|
|
<directivesynopsis>
|
|
<name>MaxRequestsPerChild</name>
|
|
<description>Limit on the number of requests that an individual child server
|
|
will handle during its life</description>
|
|
<syntax>MaxRequestsPerChild <var>number</var></syntax>
|
|
<default>MaxRequestsPerChild 10000</default>
|
|
<contextlist><context>server config</context></contextlist>
|
|
<modulelist><module>worker</module><module>perchild</module>
|
|
<module>prefork</module><module>mpm_winnt</module>
|
|
</modulelist>
|
|
|
|
<usage>
|
|
<p>The <directive>MaxRequestsPerChild</directive> directive sets
|
|
the limit on the number of requests that an individual child
|
|
server process will handle. After
|
|
<directive>MaxRequestsPerChild</directive> requests, the child
|
|
process will die. If <directive>MaxRequestsPerChild</directive> is
|
|
0, then the process will never expire.</p>
|
|
|
|
<p>Setting <directive>MaxRequestsPerChild</directive> to a
|
|
non-zero limit has two beneficial effects:</p>
|
|
|
|
<ul>
|
|
<li>it limits the amount of memory that process can consume
|
|
by (accidental) memory leakage;</li>
|
|
|
|
<li>by giving processes a finite lifetime, it helps reduce
|
|
the number of processes when the server load reduces.</li>
|
|
</ul>
|
|
|
|
<note><title>Note:</title>
|
|
<p>For <em>KeepAlive</em> requests, only the first request is counted
|
|
towards this limit. In effect, it changes the behavior to limit the
|
|
number of <em>connections</em> per child.</p>
|
|
</note>
|
|
</usage>
|
|
</directivesynopsis>
|
|
|
|
<directivesynopsis>
|
|
<name>MaxSpareThreads</name>
|
|
<description>Maximum number of idle threads</description>
|
|
<syntax>MaxSpareThreads <var>number</var></syntax>
|
|
<contextlist><context>server config</context></contextlist>
|
|
<modulelist><module>mpm_netware</module>
|
|
<module>perchild</module><module>worker</module>
|
|
</modulelist>
|
|
|
|
<usage>
|
|
<p>Maximum number of idle threads. Different MPMs deal with this
|
|
directive differently.</p>
|
|
|
|
<p>For <module>perchild</module> the default is
|
|
<code>MaxSpareThreads 10</code>. This MPM monitors the number of
|
|
idle threads on a per-child basis. If there are too many idle
|
|
threads in that child, the server will begin to kill threads
|
|
within that child.</p>
|
|
|
|
<p>For <module>worker</module> the default is
|
|
<code>MaxSpareThreads 500</code>. This MPM deals with idle threads
|
|
on a server-wide basis. If there are too many idle threads in the
|
|
server then child processes are killed until the number of idle
|
|
threads is less than this number.</p>
|
|
|
|
<p>For <module>mpm_netware</module> the default is
|
|
<code>MaxSpareThreads 100</code>. Since this MPM runs a
|
|
single-process, the spare thread count is also server-wide.</p>
|
|
|
|
</usage>
|
|
<seealso><directive module="mpm_common">MinSpareThreads</directive></seealso>
|
|
<seealso><directive module="mpm_common">StartServers</directive></seealso>
|
|
</directivesynopsis>
|
|
|
|
<directivesynopsis>
|
|
<name>MaxThreadsPerChild</name>
|
|
<description>Maximum number of threads per child process</description>
|
|
<syntax>MaxThreadsPerChild <var>number</var></syntax>
|
|
<default>MaxThreadsPerChild 64</default>
|
|
<contextlist><context>server config</context></contextlist>
|
|
<modulelist><module>worker</module><module>perchild</module>
|
|
</modulelist>
|
|
|
|
<usage>
|
|
<p>Maximum number of threads per child. For MPMs with a
|
|
variable number of threads per child, this directive sets the
|
|
maximum number of threads that will be created in each child
|
|
process. To increase this value beyond its default, it is
|
|
necessary to change the value of the compile-time define
|
|
<code>HARD_THREAD_LIMIT</code> and recompile the server.</p>
|
|
</usage>
|
|
</directivesynopsis>
|
|
|
|
<directivesynopsis>
|
|
<name>MinSpareThreads</name>
|
|
<description>Minimum number of idle threads available to handle request
|
|
spikes</description>
|
|
<syntax>MinSpareThreads <var>number</var></syntax>
|
|
<contextlist><context>server config</context></contextlist>
|
|
<modulelist><module>mpm_netware</module>
|
|
<module>perchild</module><module>worker</module>
|
|
</modulelist>
|
|
|
|
<usage>
|
|
<p>Minimum number of idle threads to handle request spikes.
|
|
Different MPMs deal with this directive
|
|
differently.</p>
|
|
|
|
<p><module>perchild</module> uses a default of
|
|
<code>MinSpareThreads 5</code> and monitors the number of idle
|
|
threads on a per-child basis. If there aren't enough idle threads
|
|
in that child, the server will begin to create new threads within
|
|
that child.</p>
|
|
|
|
<p><module>worker</module> uses a default of <code>MinSpareThreads
|
|
250</code> and deals with idle threads on a server-wide basis. If
|
|
there aren't enough idle threads in the server then child
|
|
processes are created until the number of idle threads is greater
|
|
than number.</p>
|
|
|
|
<p><module>mpm_netware</module> uses a default of
|
|
<code>MinSpareThreads 10</code> and, since it is a single-process
|
|
MPM, tracks this on a server-wide bases.</p>
|
|
|
|
</usage>
|
|
<seealso><directive module="mpm_common">MaxSpareThreads</directive></seealso>
|
|
<seealso><directive module="mpm_common">StartServers</directive></seealso>
|
|
</directivesynopsis>
|
|
|
|
<directivesynopsis>
|
|
<name>NumServers</name>
|
|
<description>Total number of children alive at the same time</description>
|
|
<syntax>NumServers <var>number</var></syntax>
|
|
<default>NumServers 2</default>
|
|
<contextlist><context>server config</context></contextlist>
|
|
<modulelist><module>perchild</module></modulelist>
|
|
|
|
<usage>
|
|
<p>Number of children alive at the same time. MPMs that use
|
|
this directive do not dynamically create new child processes so
|
|
this number should be large enough to handle the requests for
|
|
the entire site.</p>
|
|
</usage>
|
|
</directivesynopsis>
|
|
|
|
<directivesynopsis>
|
|
<name>ScoreBoardFile</name>
|
|
<description>Location of the file used to store coordination data for
|
|
the child processes</description>
|
|
<syntax>ScoreBoardFile <var>file-path</var></syntax>
|
|
<default>ScoreBoardFile logs/apache_status</default>
|
|
<contextlist><context>server config</context></contextlist>
|
|
<modulelist><module>worker</module><module>perchild</module>
|
|
<module>prefork</module></modulelist>
|
|
|
|
<usage>
|
|
<p>Apache uses a scoreboard to communicate between its parent
|
|
and child processes. Some architectures require a file to facilitate
|
|
this communication. If the file is left unspecified, Apache first
|
|
attempts to create the scoreboard entirely in memory (using anonymous
|
|
shared memory) and, failing that, will attempt to create the file on
|
|
disk (using file-based shared memory). Specifying this directive causes
|
|
Apache to always create the file on the disk.</p>
|
|
|
|
<example><title>Example</title>
|
|
ScoreBoardFile /var/run/apache_status
|
|
</example>
|
|
|
|
<p>File-based shared memory is useful for third-party applications
|
|
that require direct access to the scoreboard.</p>
|
|
|
|
<p>If you use a <directive>ScoreBoardFile</directive> 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 <a href="../misc/security_tips.html">security</a>.</p>
|
|
</usage>
|
|
<seealso><a
|
|
href="../stopping.html">Stopping and Restarting Apache</a></seealso>
|
|
</directivesynopsis>
|
|
|
|
<directivesynopsis>
|
|
<name>SendBufferSize</name>
|
|
<description>TCP buffer size</description>
|
|
<syntax>SendBufferSize <var>bytes</var></syntax>
|
|
<contextlist><context>server config</context></contextlist>
|
|
<modulelist><module>worker</module><module>perchild</module>
|
|
<module>prefork</module><module>mpm_winnt</module>
|
|
</modulelist>
|
|
|
|
<usage>
|
|
<p>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 (<em>i.e.</em>, 100ms or so, such as
|
|
transcontinental fast pipes).</p>
|
|
</usage>
|
|
</directivesynopsis>
|
|
|
|
<directivesynopsis>
|
|
<name>ServerLimit</name>
|
|
<description>Upper limit on configurable number of processes</description>
|
|
<syntax>ServerLimit <var>number</var></syntax>
|
|
<default>ServerLimit 256 (prefork), ServerLimit 16 (worker)</default>
|
|
<contextlist><context>server config</context></contextlist>
|
|
<modulelist><module>worker</module><module>prefork</module>
|
|
</modulelist>
|
|
|
|
<usage>
|
|
<p>For the <module>prefork</module> MPM, this directive sets the
|
|
maximum configured value for <directive
|
|
module="mpm_common">MaxClients</directive> for the lifetime of the
|
|
Apache process. For the worker MPM, this directive in combination
|
|
with <directive module="mpm_common">ThreadLimit</directive> sets
|
|
the maximum configured value for <directive
|
|
module="mpm_common">MaxClients</directive> for the lifetime of the
|
|
Apache process. Any attempts to change this directive during a
|
|
restart will be ignored, but <directive
|
|
module="mpm_common">MaxClients</directive> can be modified during
|
|
a restart.</p>
|
|
|
|
<p>Special care must be taken when using this directive. If
|
|
<directive>ServerLimit</directive> is set to a value much higher
|
|
than necessary, extra, unused shared memory will be allocated. If
|
|
both <directive>ServerLimit</directive> and <directive
|
|
module="mpm_common">MaxClients</directive> are set to values
|
|
higher than the system can handle, Apache may not start or the
|
|
system may become unstable.</p>
|
|
|
|
<p>With the <module>prefork</module> MPM, use this directive only
|
|
if you need to set <directive
|
|
module="mpm_common">MaxClients</directive> higher than 256.
|
|
Do not set the value of this directive any higher than what you
|
|
might want to set <directive
|
|
module="mpm_common">MaxClients</directive> to.</p>
|
|
|
|
<p>With the <module>worker</module> MPM, use this directive only
|
|
if your <directive module="mpm_common">MaxClients</directive> and
|
|
<directive module="mpm_common">ThreadsPerChild</directive>
|
|
settings require more than 16 server processes. Do not set the
|
|
value of this directive any higher than the number of server
|
|
processes required by what you may want for <directive
|
|
module="mpm_common">MaxClients </directive> and <directive
|
|
module="mpm_common">ThreadsPerChild</directive>.</p>
|
|
</usage>
|
|
</directivesynopsis>
|
|
|
|
<directivesynopsis>
|
|
<name>StartServers</name>
|
|
<description>Number of child server processes created at startup</description>
|
|
<syntax>StartServers <var>number</var></syntax>
|
|
<default>StartServers 5</default>
|
|
<contextlist><context>server config</context></contextlist>
|
|
<modulelist><module>worker</module></modulelist>
|
|
|
|
<usage>
|
|
<p>The <directive>StartServers</directive> 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.</p>
|
|
</usage>
|
|
<seealso><directive module="mpm_common">MinSpareThreads</directive></seealso>
|
|
<seealso><directive module="mpm_common">MaxSpareThreads</directive></seealso>
|
|
</directivesynopsis>
|
|
|
|
<directivesynopsis>
|
|
<name>StartThreads</name>
|
|
<description>Nubmer of threads created on startup</description>
|
|
<syntax>StartThreads <var>number</var></syntax>
|
|
<contextlist><context>server config</context></contextlist>
|
|
<modulelist><module>mpm_netware</module><module>perchild</module></modulelist>
|
|
|
|
<usage>
|
|
<p>Number of threads created on startup. As the
|
|
number of threads is dynamically controlled depending on the
|
|
load, there is usually little reason to adjust this
|
|
parameter.</p>
|
|
|
|
<p>For <module>perchild</module> the default is <code>StartThreads
|
|
5</code> and this directive tracks the number of threads per
|
|
process at startup.</p>
|
|
|
|
<p>For <module>mpm_netware</module> the default is
|
|
<code>StartThreads 50</code> and, since there is only a single
|
|
process, this is the total number of threads created at startup to
|
|
serve requests.</p>
|
|
|
|
</usage>
|
|
</directivesynopsis>
|
|
|
|
<directivesynopsis>
|
|
<name>ThreadLimit</name>
|
|
<description>Sets the upper limit on the configurable number of threads
|
|
per child process</description>
|
|
<syntax>ThreadLimit <var>number</var></syntax>
|
|
<contextlist><context>server config</context></contextlist>
|
|
<modulelist><module>mpm_winnt</module><module>worker</module></modulelist>
|
|
|
|
<usage>
|
|
<p>This directive sets the maximum configured value for <directive
|
|
module="mpm_common">ThreadsPerChild</directive> for the lifetime
|
|
of the Apache process. Any attempts to change this directive
|
|
during a restart will be ignored, but <directive
|
|
module="mpm_common">ThreadsPerChild</directive> can be modified
|
|
during a restart up to the value of this directive.</p>
|
|
|
|
<p>Special care must be taken when using this directive. If
|
|
<directive>ThreadLimit</directive> is set to a value much higher
|
|
than <directive module="mpm_common">ThreadsPerChild</directive>,
|
|
extra unused shared memory will be allocated. If both
|
|
<directive>ThreadLimit</directive> and <directive
|
|
module="mpm_common">ThreadsPerChild</directive> are set to values
|
|
higher than the system can handle, Apache may not start or the
|
|
system may become unstable. Do not set the value of this directive
|
|
any higher than your greatest predicted setting of <directive
|
|
module="mpm_common">ThreadsPerChild</directive> for the
|
|
current run of Apache.</p>
|
|
|
|
<p>The default value for <directive>ThreadLimit</directive> is
|
|
64 when used with <module>worker</module> and 1920 when used
|
|
with <module>mpm_winnt</module>.</p>
|
|
|
|
</usage>
|
|
</directivesynopsis>
|
|
|
|
<directivesynopsis>
|
|
<name>ThreadsPerChild</name>
|
|
<description>Number of threads created by each child process</description>
|
|
<syntax>ThreadsPerChild <var>number</var></syntax>
|
|
<contextlist><context>server config</context></contextlist>
|
|
<modulelist><module>worker</module><module>mpm_winnt</module>
|
|
</modulelist>
|
|
|
|
<usage>
|
|
<p>This directive sets the number of threads created by each
|
|
child process. The child creates these threads at startup and
|
|
never creates more. If using an MPM like mpmt_winnt, where
|
|
there is only one child process, this number should be high
|
|
enough to handle the entire load of the server. If using an MPM
|
|
like worker, where there are multiple child processes, the
|
|
total number of threads should be high enough to handle the
|
|
common load on the server.</p>
|
|
|
|
<p>The default value for this directive is 25 when used with
|
|
<module>worker</module> and 64 when used with
|
|
<module>mpm_winnt</module>.</p>
|
|
|
|
</usage>
|
|
</directivesynopsis>
|
|
|
|
<directivesynopsis>
|
|
<name>User</name>
|
|
<description>The userid under which the server will answer
|
|
requests</description>
|
|
<syntax>User <var>unix-userid</var></syntax>
|
|
<default>User #-1</default>
|
|
<contextlist><context>server config</context><context>virtual host</context>
|
|
</contextlist>
|
|
<modulelist><module>worker</module><module>perchild</module>
|
|
<module>prefork</module></modulelist>
|
|
|
|
<usage>
|
|
<p>The <directive>User</directive> 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. <var>Unix-userid</var> is one of:</p>
|
|
|
|
<dl>
|
|
<dt>A username</dt>
|
|
|
|
<dd>Refers to the given user by name.</dd>
|
|
|
|
<dt># followed by a user number.</dt>
|
|
|
|
<dd>Refers to a user by their number.</dd>
|
|
</dl>
|
|
|
|
<p>The user should have no privileges that result in it being
|
|
able to access files that are not intended to be visible to the
|
|
outside world, and similarly, the user should not be able to
|
|
execute code that is not meant for httpd requests. It is
|
|
recommended that you set up a new user and group specifically for
|
|
running the server. Some admins use user <code>nobody</code>, but
|
|
this is not always desirable, since the <code>nobody</code> user
|
|
can have other uses on the system.</p>
|
|
|
|
<p>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.</p>
|
|
|
|
<p>Special note: Use of this directive in <directive module="core"
|
|
type="section">VirtualHost</directive> is no longer supported. To
|
|
configure your server for <a href="mod_suexec.html">suexec</a> use
|
|
<directive module="mod_suexec">SuexecUserGroup</directive>.</p>
|
|
|
|
<note><title>Security</title> <p>Don't set <directive>User</directive>
|
|
(or <directive module="mpm_common">Group</directive>) to
|
|
<code>root</code> unless you know exactly what you are doing, and what
|
|
the dangers are.</p></note>
|
|
</usage>
|
|
</directivesynopsis>
|
|
|
|
</modulesynopsis>
|