浏览代码

Use php 7.4 for Raspberry Pi 4 - based on Debian 11

FusionPBX 2 年之前
父节点
当前提交
4885fe58aa
共有 1 个文件被更改,包括 3 次插入6 次删除
  1. 3 6
      debian/resources/nginx.sh

+ 3 - 6
debian/resources/nginx.sh

@@ -13,12 +13,9 @@ verbose "Installing the web server"
 
 #change the version of php for arm
 if [ ."$cpu_architecture" = ."arm" ]; then
-	#Pi2 and Pi3 Raspbian
-	#Odroid
-	if [ ."$os_codename" = ."stretch" ]; then
-	      php_version=7.2
-	else
-	      php_version=5.6
+ 	#set the version of php
+	if [ ."$os_codename" = ."bullseye" ]; then
+		php_version=7.4
 	fi
 fi