diff --git a/install/vst-install-debian.sh b/install/vst-install-debian.sh index 4a7ea0b6..597617b1 100755 --- a/install/vst-install-debian.sh +++ b/install/vst-install-debian.sh @@ -980,7 +980,12 @@ fi #----------------------------------------------------------# if [ "$phpfpm" = 'yes' ]; then - if [ "$release" -eq 9 ]; then + if [ "$release" -eq 10 ]; then + cp -f $vestacp/php-fpm/www.conf /etc/php/7.3/fpm/pool.d/www.conf + update-rc.d php7.3-fpm defaults + service php7.3-fpm start + check_result $? "php-fpm start failed" + elif [ "$release" -eq 9 ]; then cp -f $vestacp/php-fpm/www.conf /etc/php/7.0/fpm/pool.d/www.conf update-rc.d php7.0-fpm defaults service php7.0-fpm start