I'm doing the configuration of php-fpm, and I'm experiencing some issues with the include= directive in php-fpm.conf file.
Here is the default directive :
include=/etc/php/7.0/fpm/pool.d/*.conf
But I want to add another path along this path, lets say /usr/example/php-fpm/*/pool7.0.cfg.
How can I do that, I tried globing with
include=/{/etc/php/7.0/fpm/pool.d/*.conf,/usr/example/php-fpm/*/pool7.0.cfg}
But it doesn't works..
Thanks for you help !