From: Cirvaazny Date: Mon, 28 Oct 2024 11:22:53 +0000 (+0000) Subject: Update config/nginx/subpath-proxy-config X-Git-Url: http://source.bookstackapp.com/devops/commitdiff_plain/refs/pull/43/head Update config/nginx/subpath-proxy-config Update the example config to use the PHP version installed by the shell helper script. --- diff --git a/config/nginx/subpath-proxy-config b/config/nginx/subpath-proxy-config index b64fdb6..c7e3632 100644 --- a/config/nginx/subpath-proxy-config +++ b/config/nginx/subpath-proxy-config @@ -31,7 +31,8 @@ server { location ~ \.php$ { include snippets/fastcgi-php.conf; - fastcgi_pass unix:/run/php/php7.4-fpm.sock; + # If your PHP version is not 8.3, then update the socket to point at the correct version. + fastcgi_pass unix:/run/php/php8.3-fpm.sock; } }