From 9fe75a186627e0626ca60868d13e88b9d267477a Mon Sep 17 00:00:00 2001 From: Colin Wilson Date: Wed, 27 Jan 2021 07:06:39 +0000 Subject: [PATCH] - Update Nginx default.conf for PHP 8.0 --- default.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/default.conf b/default.conf index f4fa5b6..123e6ab 100644 --- a/default.conf +++ b/default.conf @@ -40,7 +40,7 @@ server { location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; - fastcgi_pass unix:/run/php/php7.4-fpm.sock; + fastcgi_pass unix:/run/php/php8.0-fpm.sock; fastcgi_index index.php; include fastcgi_params; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;