devilbox/autostart
2019-01-28 11:35:40 +01:00
..
configure-blackfire-cli.sh-example Only configure blackfire cli if binary is present 2019-01-28 11:35:40 +01:00
README.md Enable new autostart behaviour: per version and for all 2018-12-29 00:19:54 +01:00
run-node-js-projects.sh-example Add global autostart example 2018-12-29 13:12:38 +01:00

Custom startup scripts (global)

Any script inside this directory ending by .sh will be executed during the PHP container startup. This is useful to apply your custom settings such as installing software that usually requires the user to accept a license or similar.

A few examples are given that do not end by .sh which won't be run. If you want to use the provided examples, copy them to a file ending by .sh

Info

If you want to autostart NodeJS applications, you can use pm2. Ensure you do this as user devilbox, as by default everything is run by root.

su -c 'cd /shared/httpd/node/node; pm2 start index.js' -l devilbox

Note

This directory will startup commands for all PHP versions. If you want to selectively run commands for a specific version, go to cfg/php-startup-X.Y/.

Important

All provided scripts will be executed with root permissions.