I'm currently trying to update the "session.save_handler = files"
and "session.save_path = null"
to my own values but they always default to files.
In my case I have setup the php redis extensions and I would like to setup to "session.save_handler = redis"
and "session.save_path = https://rediserver:6375"
, however, after updating the config files either updating directly on /usr/local/etc/php-fpm.d/www.conf or adding an extra .conf file to /usr/local/etc/php-fpm.d/session.conf and restarting php-fpm with "kill -USR2 1" the values are not updated when I check using php-info()
; function.
Any idea what might be happing ? I'm using docker image php:7.2-fpm .
Thanks