From f3ffc7f719d68cb5185da05e4b54c95ec1e7e05f Mon Sep 17 00:00:00 2001 From: Daniel Dolezal Date: Wed, 23 Oct 2024 21:51:26 +0200 Subject: [PATCH] fix access to phpMyAdmin - fpm socket path where wrong --- configs/nginx.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configs/nginx.conf b/configs/nginx.conf index a195e8b..1191141 100644 --- a/configs/nginx.conf +++ b/configs/nginx.conf @@ -18,7 +18,7 @@ server { } location ~ \.php$ { - fastcgi_pass unix:/run/php/php8.1-fpm.sock; + fastcgi_pass unix:/run/php/php8.3-fpm.sock; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; include snippets/fastcgi-php.conf; @@ -27,4 +27,4 @@ server { location ~ /\.ht { deny all; } -} \ No newline at end of file +}