From b413d7d109f4f210e33e9db9b31249e27a8265a7 Mon Sep 17 00:00:00 2001 From: Alexander Schranz Date: Wed, 10 Jul 2024 16:34:29 +0200 Subject: [PATCH] Upgrade vhost to current supported PHP version --- cookbook/web-server/nginx.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cookbook/web-server/nginx.rst b/cookbook/web-server/nginx.rst index fadfd430..52710973 100644 --- a/cookbook/web-server/nginx.rst +++ b/cookbook/web-server/nginx.rst @@ -37,7 +37,7 @@ The Nginx configuration could look something like. # pass the PHP scripts to FastCGI server from upstream phpfcgi location ~ ^/(index|config)\.php(/|$) { - fastcgi_pass unix:/var/run/php/php8.1-fpm.sock; + fastcgi_pass unix:/var/run/php/php8.3-fpm.sock; fastcgi_split_path_info ^(.+\.php)(/.*)$; include fastcgi_params; fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;