diff options
author | Jeff Trawick <trawick@apache.org> | 2001-02-22 19:54:49 +0100 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2001-02-22 19:54:49 +0100 |
commit | 0a0fb4c87bc0a62c28edcfcd2a87b7060dfc7e29 (patch) | |
tree | 7a1e36c72871818fcbd28f13dbfa1c8cd82c7e3a /docs/conf/httpd-std.conf | |
parent | Remove a semicolon from a macro. This makes things a bit more readable, (diff) | |
download | apache2-0a0fb4c87bc0a62c28edcfcd2a87b7060dfc7e29.tar.xz apache2-0a0fb4c87bc0a62c28edcfcd2a87b7060dfc7e29.zip |
Back down the default number of initial threads created with
the threaded Unix MPM. Tweak the sample configuration files to
reflect the default settings.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88278 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/conf/httpd-std.conf')
-rw-r--r-- | docs/conf/httpd-std.conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/conf/httpd-std.conf b/docs/conf/httpd-std.conf index ac6ddc077f..561e7c4a14 100644 --- a/docs/conf/httpd-std.conf +++ b/docs/conf/httpd-std.conf @@ -126,11 +126,11 @@ MaxRequestsPerChild 0 # ThreadsPerChild ...... constant number of worker threads in each server process # MaxRequestsPerChild .. maximum number of requests a server process serves <IfModule threaded.c> -StartServers 5 +StartServers 3 MaxClients 8 MinSpareThreads 5 MaxSpareThreads 10 -ThreadsPerChild 20 +ThreadsPerChild 25 MaxRequestsPerChild 0 </IfModule> |