There are lots of recommended practices and tutorials for securing various components of a LEMP/LAMP stack when running in a cluster whose private network traffic is shared by other, potentially hostile, hosts (e.g., AWS, Vultr, DigitalOcean). You can secure reverse proxy and MySQL traffic with TLS. But, for clusters which involve a set of instances hosting PHP-FPM pools, there doesn't seem to be any literature on securing the TCP traffic between the web server instance and the PHP-FPM instances.
Is it even necessary, or is there a reason there's no literature (e.g., the traffic is encrypted, or no sane VPS/cloud providers would run private network interfaces in promiscuous mode)? I can see problems when a request comes in to an HTTPS site, the site sends the request details to the PHP-FPM pool (including, say, passwords or credit card numbers), and a third party listens to that traffic somehow.