You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On php-fpm.conf, you have a [global] section, and at the end an include=/etc/php/7.0/fpm/pool.d/*.conf.
These additionnal config files contains others section definition.
Problem is, when you want to add a non-already-existing parameter, its get added at the end of the section, namely after the include directive. In the end, this cause the parameter to be added in another section of the config file.
I think this could be easily resolved by adding new parameters right after the the section name, what do you think ?
The text was updated successfully, but these errors were encountered:
I'm trying to manipulate php-fpm config files.
On php-fpm.conf, you have a
[global]
section, and at the end aninclude=/etc/php/7.0/fpm/pool.d/*.conf
.These additionnal config files contains others section definition.
Problem is, when you want to add a non-already-existing parameter, its get added at the end of the section, namely after the
include
directive. In the end, this cause the parameter to be added in another section of the config file.I think this could be easily resolved by adding new parameters right after the the section name, what do you think ?
The text was updated successfully, but these errors were encountered: