diff options
author | Justin Erenkrantz <jerenkrantz@apache.org> | 2001-08-27 22:55:09 +0200 |
---|---|---|
committer | Justin Erenkrantz <jerenkrantz@apache.org> | 2001-08-27 22:55:09 +0200 |
commit | 6c28ee4d9dc9853a6367445255a06da86ac909b2 (patch) | |
tree | c8016963d2575582662d9926141761e42acf26bd /docs/conf/httpd-std.conf | |
parent | Fix a case where on restart, an admin started logging, and the logging (diff) | |
download | apache2-6c28ee4d9dc9853a6367445255a06da86ac909b2.tar.xz apache2-6c28ee4d9dc9853a6367445255a06da86ac909b2.zip |
As the worker MPM is really an alternative to the threaded MPM (and hopefully it'll be a replacement), the httpd.conf settings are identical.
Submitted by: Aaron Bannert <aaron@clove.org>
Reviewed by: Justin Erenkrantz
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90738 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | docs/conf/httpd-std.conf | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/docs/conf/httpd-std.conf b/docs/conf/httpd-std.conf index 89c6db2fd9..1b7d168410 100644 --- a/docs/conf/httpd-std.conf +++ b/docs/conf/httpd-std.conf @@ -130,6 +130,22 @@ ThreadsPerChild 25 MaxRequestsPerChild 0 </IfModule> +# worker MPM +# StartServers: initial number of server processes to start +# MaxClients: maximum number of server processes allowed to start +# MinSpareThreads: minimum number of worker threads which are kept spare +# MaxSpareThreads: maximum number of worker threads which are kept spare +# ThreadsPerChild: constant number of worker threads in each server process +# MaxRequestsPerChild: maximum number of requests a server process serves +<IfModule worker.c> +StartServers 3 +MaxClients 8 +MinSpareThreads 5 +MaxSpareThreads 75 +ThreadsPerChild 25 +MaxRequestsPerChild 0 +</IfModule> + # perchild MPM # NumServers: constant number of server processes # StartThreads: initial number of worker threads in each server process |