Re: [ PHP ] Best config practices
Nicholas Calugar
You may also want to look into [1] .user.ini files.
toggle quoted message
Show quoted text
+Steven Would you consider compiling PHP with this option: --with-config-file-scan-dir /home/vcap/app/php/etc/php.d And then providing some mechanism for the buildpack to copy .ini files from a known location into that directory? [1] http://php.net/manual/en/configuration.file.per-user.php -- Nicholas Calugar On January 20, 2017 at 5:36:45 AM, Daniel Mikusa (dmikusa(a)pivotal.io) wrote:
You can include a `.profile.d/` script or a `.profile` script. It depends on exactly what you're trying to do as to which one would be better to use, but I believe most of the time you'd want the `.profile` script. You can see more about it in the docs here. https://docs.cloudfoundry.org/devguide/deploy-apps/deploy-app.html#profile You can essentially do whatever you want in this script. Plus you'll have access to everything that the PHP build pack has configured for you and you'll have access to all the environment variables. This means you can run PHP scripts or examine VCAP_SERVICES. The only catch is that these scripts runs prior to your application starting so they must run and your application must start within the defined timeout (default 60s, max 180s on most platforms). If you want to integrate with the build pack and do something during staging or if you need more time (cause staging typically runs for up to 900s), you can add a build pack extension. These are written in Python and run as a part of the build pack. Instructions on doing that can be found here. https://github.com/cloudfoundry/php-buildpack#extensions Hope that helps! Dan On Thu, Jan 19, 2017 at 4:01 PM, Leandro David Cacciagioni < leandro.21.2008(a)gmail.com> wrote: I have a php monolith app that requires tons of .ini files config previous |
|