diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2002-09-18 15:56:51 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2002-09-18 15:56:51 +0000 |
commit | 9d8e0a0d964b1fd58790ea7041039d76c8d6aab2 (patch) | |
tree | d8c93eaf36ffd0b677984ecd8504d45e054a5c3d /usr.sbin/httpd/conf | |
parent | 5ede7313a056ccb60e0d0e85ccac5baa7d749d53 (diff) |
no point in limiting MaxRequestsPerChild on OpenBSD
Diffstat (limited to 'usr.sbin/httpd/conf')
-rw-r--r-- | usr.sbin/httpd/conf/httpd.conf | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/httpd/conf/httpd.conf b/usr.sbin/httpd/conf/httpd.conf index afe86f591cd..fc33a531dbe 100644 --- a/usr.sbin/httpd/conf/httpd.conf +++ b/usr.sbin/httpd/conf/httpd.conf @@ -1,3 +1,4 @@ +# $OpenBSD: httpd.conf,v 1.13 2002/09/18 15:56:50 henning Exp $ # # Based upon the NCSA server configuration files originally by Rob McCool. # @@ -160,7 +161,7 @@ MaxClients 150 # isn't really needed, but a few (such as Solaris) do have notable leaks # in the libraries. # -MaxRequestsPerChild 30 +MaxRequestsPerChild 0 # # Listen: Allows you to bind Apache to specific IP addresses and/or |