Customizing the PHP-FPM config
Unless I missed something, the buildpack does not allow customizing the PHP-FPM config.
I need it in one of my project to forward some environment variables from the dyno (set through the heroku config) to the PHP process to access them at runtime
@stof All variables set with heroku config are automatically written to the FPM config and should be available at runtime in both $_SERVER and $_ENV. (See also http://chh-php-test.herokuapp.com/info)
ah, I missed the fact that this is handled by the script run at boot time. thanks
However, it may still make sense to allow customizing the FPM config for other purposes. What do you think ?
@stof Yes it makes sense to me :smiley: