fix access to phpMyAdmin - fpm socket path where wrong

This commit is contained in:
2024-10-23 21:51:26 +02:00
parent 13ec876669
commit f3ffc7f719
+2 -2
View File
@@ -18,7 +18,7 @@ server {
} }
location ~ \.php$ { 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; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params; include fastcgi_params;
include snippets/fastcgi-php.conf; include snippets/fastcgi-php.conf;
@@ -27,4 +27,4 @@ server {
location ~ /\.ht { location ~ /\.ht {
deny all; deny all;
} }
} }