>
> This is a PHP limitation

Not any more :). Since PHP 5.3, you can put host sections in the php.ini
file, which means you no longer need separate pools for different settings
per server. See
http://www.php.net/manual/en/ini.sections.php#ini.per-hostfor more
information

In this case, you could add something like this to the bottom of your
php.ini file:
[HOST=webmail.example.com]
suhosin.session.encrypt=Off
; And whatever else you need

Alternatively you can use a path instead of host:
[PATH=/var/www/webmail]
...etc...


On Thu, Jan 31, 2013 at 3:57 AM, Locke Bircher <[email protected]> wrote:

> If you're using php-fpm you can create separate pools each with their own
> separate php.ini settings.
>
> More info: https://github.com/perusio/php-fpm-example-config
>
> -Locke
>
>
> On Wed, Jan 30, 2013 at 11:53 AM, Stefan de Konink <[email protected]>wrote:
>
>> On 01/30/13 17:53, chief_wrench wrote:
>> >> 2) You should use php.ini to set these variables for your php-fpm
>> proces
>> >
>> > but... but... these settings will apply to all virtual servers then.
>> > will the current version be able to handle this?
>>
>> This is a PHP limitation, but nothing limits you to start a specific php
>> instance for that specific virtual server that uses your specific
>> php.ini file.
>>
>> Stefan
>>
>> _______________________________________________
>> Cherokee mailing list
>> [email protected]
>> http://lists.octality.com/listinfo/cherokee
>>
>
>
> _______________________________________________
> Cherokee mailing list
> [email protected]
> http://lists.octality.com/listinfo/cherokee
>
>
_______________________________________________
Cherokee mailing list
[email protected]
http://lists.octality.com/listinfo/cherokee

Reply via email to