From f71ad0f6567cbcb3f6abaa32bd4b35180ba4ff56 Mon Sep 17 00:00:00 2001 From: bunkerity Date: Fri, 12 Aug 2022 15:22:22 +0200 Subject: [PATCH] php - fix fastcgi_params path --- core/php/confs/server-http/php.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/php/confs/server-http/php.conf b/core/php/confs/server-http/php.conf index 8e1dc9f29..e7e1d3b8c 100644 --- a/core/php/confs/server-http/php.conf +++ b/core/php/confs/server-http/php.conf @@ -3,7 +3,7 @@ location / { try_files $uri $uri/ /index.php?$query_string; } location ~ \.php$ { - include {{ NGINX_PREFIX }}/fastcgi_params; + include {{ NGINX_PREFIX }}server-http/fastcgi_params; {% if REMOTE_PHP != "" +%} set $backend "{{ REMOTE_PHP }}:9000"; fastcgi_pass $backend;