Mercurial > repos > other > Puppet
comparison modules/website/manifests/php.pp @ 462:2f2ecf1f0215
Reduce PHP FPM overheads
* Reduce "max idle servers", which leaves LOTS of unused servers
sitting around most of the time
* Remove old, unused static config file
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sat, 18 Nov 2023 18:38:12 +0000 |
parents | d0e7979c7e8c |
children | 2c3e745be8d2 |
comparison
equal
deleted
inserted
replaced
461:5c97adb07a0a | 462:2f2ecf1f0215 |
---|---|
43 'memory_limit' => '256M', | 43 'memory_limit' => '256M', |
44 }, | 44 }, |
45 'php_value' => { | 45 'php_value' => { |
46 # 'session.save_path' => '/var/lib/php/session' # Ubuntu uses plural, CentOS uses singular | 46 # 'session.save_path' => '/var/lib/php/session' # Ubuntu uses plural, CentOS uses singular |
47 }, | 47 }, |
48 'pm_start_servers' => 5, | |
49 'pm_min_spare_servers' => 5, | |
50 'pm_max_spare_servers' => 10, | |
48 }, | 51 }, |
49 }, | 52 }, |
50 dev => false, | 53 dev => false, |
51 composer => false, | 54 composer => false, |
52 pear => false, | 55 pear => false, |