diff options
author | Frank Hunleth <fhunleth@troodon-software.com> | 2016-11-08 14:49:42 -0500 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-11-09 22:24:26 +0100 |
commit | cdcb7c25cdce46ec0bf6f1b993dc0502035c0cb0 (patch) | |
tree | af48185711230a42a55e7f15c2d34f9b01a5f0c5 | |
parent | 56d4c0b8ae6d18577e8e9eb50dae88936a19f0ac (diff) | |
download | buildroot-cdcb7c25cdce46ec0bf6f1b993dc0502035c0cb0.tar.gz buildroot-cdcb7c25cdce46ec0bf6f1b993dc0502035c0cb0.zip |
php-fpm: remove config comments to fix startup
The comments in the Buildroot-provided php-fpm.conf would produce the
following error when starting php-fpm:
ERROR: [/etc/php-fpm.conf:2] value is NULL for a ZEND_INI_PARSER_ENTRY
Removing the comments fixes the problem.
Signed-off-by: Frank Hunleth <fhunleth@troodon-software.com>
Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/php/php-fpm.conf | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/package/php/php-fpm.conf b/package/php/php-fpm.conf index b75a58fefc..88014b8c80 100644 --- a/package/php/php-fpm.conf +++ b/package/php/php-fpm.conf @@ -1,9 +1,6 @@ [www] -# Only start children when there are requests to be processed pm = ondemand -# Terminate them again after there haven't been any for 2 minutes pm.process_idle_timeout = 120s -# Maximum number of children processing PHP requests concurrently pm.max_children = 5 listen = /var/run/php-fpm.sock |