I have a Load Balancer in front of several nginx web servers. I want to lock down my web servers as much as possible so I've added this to the http
block in my nginx.conf
:
allow {internal_ip_of_load_balancer};
deny all;
As I understand it, this will only allow requests from my Load Balancer to hit nginx. Is there much of a benefit from doing this?