Multi PHP working

This commit is contained in:
eroncero
2025-08-03 16:57:20 +02:00
parent b350243c64
commit 49d9c13f4d
193 changed files with 5159 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
#!/bin/sh
mkdir -p /tmp/buildtime/etc/php
mv /etc/php/* /tmp/buildtime/etc/php/

View File

@@ -1,5 +1,8 @@
#!/bin/sh
mkdir -p /etc/php # Creates /etc/php if it doesn't exist
mv /tmp/buildtime/etc/php/* /etc/php/
# Start each version listed in PHP_VERSIONS
for version in $PHP_VERSIONS; do
echo "Starting php$version-fpm..."