how to load new php.ini setting in php-fpm with nginx_apache

shanky

Verified User
Joined
Dec 7, 2007
Messages
88
Hi

I modified php.ini but new value is not changed after running:

systemctl reload httpd
systemctl reload nginx

It will change only I run
./build rewrite_confs
but httpd is changed to default too.

How I can reload just the new /usr/local/php56/lib/php.ini setting in php-fpm56?

Thanks
 
Hello,

If you change php.ini for PHP-FPM you need to restart PHP-FPM processes with

Code:
systemctl restart php-fpm56
 
Back
Top