From 52b013e1651e7e524f1576903f49d39abfe5dd94 Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Tue, 23 Jun 2026 08:27:52 +0100 Subject: [PATCH] fastcgi SCRIPT_FILENAME looks in /usr/share/nginx/html --- http/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/nginx.conf b/http/nginx.conf index c788f22..ca4c2f4 100644 --- a/http/nginx.conf +++ b/http/nginx.conf @@ -36,7 +36,7 @@ http { root html; fastcgi_pass unix:/run/php8.5-fpm-joeac.net-http.sock; fastcgi_index index.php; - fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name; + fastcgi_param SCRIPT_FILENAME /usr/share/nginx/html$fastcgi_script_name; include fastcgi_params; }