From 3c89fc8ccfbb4aae9f388098fa8f0cb5bf2e0828 Mon Sep 17 00:00:00 2001 From: liberodark Date: Sat, 5 Jan 2019 20:13:16 +0100 Subject: [PATCH] fix php 7.2 --- conf/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/nginx.conf b/conf/nginx.conf index 11fd4d5..fbbac81 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -4,7 +4,7 @@ index index.php; location ^~ __PATH__/ { try_files /public/router.php =404; fastcgi_split_path_info ^(.+?\.php)(/.*)$; - fastcgi_pass unix:/var/run/php/php7.0-fpm.sock; + fastcgi_pass unix:/var/run/php/php7.2-fpm.sock; fastcgi_index router.php; fastcgi_param SCRIPT_FILENAME \$document_root\$fastcgi_script_name; include /etc/nginx/fastcgi_params;