From e39d666d8b0bfc313d00255d55470eecb135f230 Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 11 May 2026 18:07:12 -0600 Subject: [PATCH] Fix nginx fastcgi_pass IPv6 a IPv4 para PHP-FPM --- nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx.conf b/nginx.conf index 5c1aea00..18d9f23e 100644 --- a/nginx.conf +++ b/nginx.conf @@ -19,7 +19,7 @@ http { } location ~ \.php$ { - fastcgi_pass [::1]:9000; + fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name; include fastcgi_params;