Dashboard
PHP:
8.1.34
OS:
Linux
User:
uid288609
/
/
usr
/
local
/
bin
📤 Upload
📝 New File
📁 New Folder
Close
Editing: php-fpm-entrypoint.sh
#!/bin/bash set -euo pipefail PHP_VERSION="$1" if [ ! -d "/opt/php${PHP_VERSION}" ]; then echo "PHP version ${PHP_VERSION} does not exist, doing nothing" >&2 exec sleep infinity fi exec "/opt/php${PHP_VERSION}/sbin/php-fpm" --nodaemonize --fpm-config "/opt/php${PHP_VERSION}/etc/php-fpm.conf"
Save
Cancel