From 8cad33e3c7b65d93ff8f665d7c8bf2d94af9479b Mon Sep 17 00:00:00 2001 From: sabelo Date: Mon, 29 Jul 2024 01:21:14 -0300 Subject: [PATCH] improves nginx conf to deploy on coolify --- nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx.conf b/nginx.conf index 0aab8d3..5ed0f9d 100644 --- a/nginx.conf +++ b/nginx.conf @@ -34,7 +34,7 @@ server { location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; - fastcgi_pass unix:/var/run/php/php7.3-fpm.sock; + fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params;