magnificent-eve-10499
01/29/2025, 4:37 PMmagnificent-eve-10499
01/30/2025, 6:00 PMupstream mauticWeb {
least_conn;
server ${MAUTIC_WEB_URL}:9000;
}
and in my http
--> server
block wherever I needed to reach the backend php-fpm server I needed to use the upstream config.
server{
...
location ~ ^(.+\.php)(.*)$ {
...
fastcgi_keep_conn on;
fastcgi_pass mauticWeb;
...
}
...
}