This commit is contained in:
eroncero
2025-07-17 11:10:08 +02:00
parent b81b786dcb
commit 530860a045
12 changed files with 16 additions and 63 deletions

View File

@@ -0,0 +1,10 @@
#!/bin/sh
apt-get update
echo "Installing PHP versions: $PHP_VERSIONS"
for version in $PHP_VERSIONS; do
echo "Installing PHP $version ..."
service "php$version-fpm" start
done