]> BookStack Code Mirror - devops/commitdiff
Updated ubuntu 16.04 scripts to use php7.4
authorDan Brown <redacted>
Sun, 19 Jan 2020 14:59:59 +0000 (14:59 +0000)
committerDan Brown <redacted>
Sun, 19 Jan 2020 14:59:59 +0000 (14:59 +0000)
config/nginx
scripts/installation-ubuntu-16.04.sh

index adcc59d7a411db03428e78759781e1345c31b6ad..530b9911b65a38d01b1dcbebf39982e9866b302b 100644 (file)
@@ -13,6 +13,6 @@ server {
   
   location ~ \.php$ {
     include snippets/fastcgi-php.conf;
-    fastcgi_pass unix:/run/php/php7.3-fpm.sock;
+    fastcgi_pass unix:/run/php/php7.4-fpm.sock;
   }
 }
index 0f91513871f5f8ecce97e1fca915a07992b85a2e..e21bb3ecd493a530f99050cc4a9ea884431a3531 100644 (file)
@@ -12,8 +12,8 @@ export DEBIAN_FRONTEND=noninteractive
 apt update
 apt install -y software-properties-common python-software-properties
 add-apt-repository -yu ppa:ondrej/php
-apt install -y git nginx curl php7.3-fpm php7.3-curl php7.3-mbstring php7.3-ldap \
-php7.3-tidy php7.3-xml php7.3-zip php7.3-gd php7.3-mysql mysql-server-5.7
+apt install -y git nginx curl php7.4 php7.4-fpm php7.4-curl php7.4-mbstring php7.4-ldap \
+php7.4-tidy php7.4-xml php7.4-zip php7.4-gd php7.4-mysql mysql-server-5.7
 
 # Set up database
 DB_PASS="$(head /dev/urandom | tr -dc A-Za-z0-9 | head -c 13)"