From owner-freebsd-stable@FreeBSD.ORG Thu Apr 21 10:38:24 2005 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B94AA16A4CE for ; Thu, 21 Apr 2005 10:38:24 +0000 (GMT) Received: from email-2.eurowings.com (email.eurowings.com [193.96.182.7]) by mx1.FreeBSD.org (Postfix) with ESMTP id B9E3F43D45 for ; Thu, 21 Apr 2005 10:38:23 +0000 (GMT) (envelope-from h.kipp@eurowings.com) Received: from localhost (email-2 [127.0.0.1]) by email-2.eurowings.com (Postfix) with ESMTP id 10FC16FCC1 for ; Thu, 21 Apr 2005 12:41:23 +0200 (CEST) Received: from email-2.eurowings.com ([127.0.0.1]) by localhost (email-2.eurowings.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 13736-01 for ; Thu, 21 Apr 2005 12:41:22 +0200 (CEST) Received: from EXCH4.eurowings.com (unknown [10.100.1.36]) by email-2.eurowings.com (Postfix) with ESMTP id DE5266FCA1 for ; Thu, 21 Apr 2005 12:41:22 +0200 (CEST) Received: from EXCH5.eurowings.com ([10.100.1.37]) by EXCH4.eurowings.com with Microsoft SMTPSVC(6.0.3790.211); Thu, 21 Apr 2005 12:38:14 +0200 X-MimeOLE: Produced By Microsoft Exchange V6.5.7226.0 Content-class: urn:content-classes:message MIME-Version: 1.0 Date: Thu, 21 Apr 2005 12:38:13 +0200 Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: FreeBSD and very heavy web server Thread-Index: AcVGUQBNpBWaAJ7wRy2zMF+GOMGOmgACFZIm From: "Kipp Holger" To: "peceka" , X-OriginalArrivalTime: 21 Apr 2005 10:38:14.0538 (UTC) FILETIME=[38E5C6A0:01C5465E] X-Virus-Scanned: amavisd-new at eurowings.com Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: RE: FreeBSD and very heavy web server X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Apr 2005 10:38:24 -0000 peceka wrote on Thu 21.04.2005 11:02 > i must set up a web server. I want to do this on FreeBSD 5.X. and > Apache 1.3 for this and php4. What do you mean by 'very heavy web server'? Please be more specific. - Do you expect many parallel connections? Default configuration allows for 512 child processes with apache, so you might want to set this higher during compilation (eg set to 1024). - Does it make sense to separate static and dynamic requests? You might want to use separate servers(*) for static and dynamic requests, using a quick low-footprint webserver for static requests that allows for many parallel requests. Maybe lighttpd is all you need (ymmv) - Make sure you don't run out of mbufs, open file descriptors etc. - ... Regards, Holger Kipp (*) eg shttpd, lighttpd,...