Added fix from #10 to all php versions
This commit is contained in:
@@ -45,15 +45,17 @@ if [ "$shortdist" = "el8" ]; then
|
||||
restorecon -r /var/www/ > $OUTPUT 2>&1
|
||||
fi
|
||||
|
||||
#PHP 8.0 Settings
|
||||
if [ "$phpVerBranch" = "8x" ]; then
|
||||
if [ "$shortdist" = "ubu1804" ] || [ "$shortdist" = "ubu2004" ] || [ "$shortdist" = "deb10" ] || [ "$shortdist" = "deb11" ] ; then
|
||||
if ! grep -Fxq "apc.enable_cli=1" /etc/php/${phpver}/mods-available/apcu.ini; then
|
||||
echo "apc.enable_cli=1" >> /etc/php/${phpver}/mods-available/apcu.ini
|
||||
fi
|
||||
elif [ "$shortdist" = "el8" ]; then
|
||||
sed -i "/apc.enable_cli/c\apc.enable_cli=1" /etc/opt/remi/php${phpver//.}/php.d/40-apcu.ini
|
||||
#Enable PHP-ACPU on CLI
|
||||
if [ "$shortdist" = "ubu1804" ] || [ "$shortdist" = "ubu2004" ] || [ "$shortdist" = "deb10" ] || [ "$shortdist" = "deb11" ] ; then
|
||||
if ! grep -Fxq "apc.enable_cli=1" /etc/php/${phpver}/mods-available/apcu.ini; then
|
||||
echo "apc.enable_cli=1" >> /etc/php/${phpver}/mods-available/apcu.ini
|
||||
fi
|
||||
elif [ "$shortdist" = "el8" ]; then
|
||||
sed -i "/apc.enable_cli/c\apc.enable_cli=1" /etc/opt/remi/php${phpver//.}/php.d/40-apcu.ini
|
||||
fi
|
||||
|
||||
#PHP 8.0 Settings
|
||||
if [ "$phpVerBranch" = "8x" ]; then
|
||||
sed -i "/opcache.enable/c\php_admin_value[opcache.enable] = 1" "$phpPoolDir"/"$sitename".conf
|
||||
fi
|
||||
|
||||
|
||||
Reference in New Issue
Block a user