From f99580c176113df31e10263e8845ac05da5acac3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fernando=20P=C3=A9rez?= Date: Thu, 21 May 2026 23:43:22 -0600 Subject: [PATCH] Fix: fastcgi remote addr --- nginx.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/nginx.conf b/nginx.conf index eab49187..c017e8f0 100644 --- a/nginx.conf +++ b/nginx.conf @@ -22,6 +22,7 @@ http { fastcgi_pass unix:/var/run/php-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name; + fastcgi_param REMOTE_ADDR $remote_addr; include fastcgi_params; }