Display More
Reporter DrCarsonBeckett (DrCarsonBeckett) Created Jan 20, 2020 4:33:17 PM Updated Jan 20, 2020 4:35:14 PM Priority Normal Type Bug State Submitted Assignee Laurent Declercq (nuxwin) Subsystem No subsystem Affected versions 1.5.1 Milestone 1.6.0 Severity No severity 10_phpfpm_settings_override.pl contains an error which leads "pm.start_servers" to be set to "1". No matter the setting.
Line 45:
'pm.start_servers ' => 1,
Should be:
'pm.start_servers' => 1,
Same for line 56:
'pm.start_servers ' => 2,
Should be:
'pm.start_servers' => 2,
I changed the listener file myself and after that it works like a charm.