Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:46354 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 24595 invoked from network); 8 Dec 2009 11:04:41 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 8 Dec 2009 11:04:41 -0000 Authentication-Results: pb1.pair.com header.from=mike503@gmail.com; sender-id=pass; domainkeys=bad Authentication-Results: pb1.pair.com smtp.mail=mike503@gmail.com; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.216.173 as permitted sender) DomainKey-Status: bad X-DomainKeys: Ecelerity dk_validate implementing draft-delany-domainkeys-base-01 X-PHP-List-Original-Sender: mike503@gmail.com X-Host-Fingerprint: 209.85.216.173 mail-px0-f173.google.com Received: from [209.85.216.173] ([209.85.216.173:55939] helo=mail-px0-f173.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id FA/15-21824-9C23E1B4 for ; Tue, 08 Dec 2009 06:04:41 -0500 Received: by pxi3 with SMTP id 3so157098pxi.16 for ; Tue, 08 Dec 2009 03:04:39 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type; bh=I3yryI884wsFSS1vnCT8RvAktpNLvEs2AdNlcusu/rc=; b=g/behie+MkrQDmvqhKGW6eRWn4+OGkYOxpkBiQ16pG2KeGyj6VSUb9/GjW6UeIvuLF /NTgKCw9cmRaif8dWq+v97YaEyCINkEVyPBmhrPpfgRS/qnbUzSCZ1lVppziO0KHS3TV ESJBDKiXuQi/MWokROZraqlJh1z9rdesyuEeM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=Ya9+5qvYs77FgK+3pjKzNEO1jCzv7b44tSkab37XeV4rSUIAuQ6oJ+0uPS0VMghZFB ls58ZPhP5IjZT/iVY/3dxaWP81q3+KoDa8EUkc0bsIuo3IPF3mo+6OyarcGhwwAgYKNO 3454yHmngqAEpV8ggTLTC8e7/UufGy6FvszMM= MIME-Version: 1.0 Received: by 10.114.236.11 with SMTP id j11mr14803548wah.168.1260270278278; Tue, 08 Dec 2009 03:04:38 -0800 (PST) In-Reply-To: References: <4B190660.2050107@daylessday.org> <4B1CCA1F.90802@daylessday.org> Date: Tue, 8 Dec 2009 03:04:38 -0800 Message-ID: To: Pierre Joye Cc: Antony Dovgal , php-dev Content-Type: text/plain; charset=UTF-8 Subject: Re: [PHP-DEV] FPM is available in a separate SVN branch From: mike503@gmail.com (Michael Shadle) > On Tue, Dec 8, 2009 at 2:47 AM, Pierre Joye wrote: >> Why would you need that given that we have host, path or .user.ini >> support? Which has to be backported to FPM as far as I know. > you're probably right. i mainly am only thinking of PHP_INI_SYSTEM and > things the user can't or shouldn't change themselves in .user.ini type > files or with things like htscanner (pre 5.3) Actually, I retract that. Unless there is a "Pool" identifier added: Host can be different for the same pool Path can be different for the same pool .user.ini's don't work for *every* ini option. Or, instead of per-pool .ini files, then just have per-pool ini overloads, using the previous example, something like: worker.name= default; worker.listen.address = tcp:127.0.0.1:9000 worker.listen.backlog = -1 worker.listen.owner = nobody worker.listen.group = nogroup worker.listen.mode = 0666 worker.php_defineshort_open_tag = On worker.ini.error_reporting = E_ALL (yes this is not a big deal to change on another level, but just using it as an example)