Question
Load Balancer Status Down
Load Balancer is listing status as Down.
In the load balancer portal, shows health checks at 100%.
On the server level, its receiving the health check requests, and returning 200 appropriately, what am I do doing wrong?
I have a similarly configured Load Balancer + upstream, and that seems to be working fine.
server {
listen 50080 default_server;
listen [::]:50080 default_server;
server_name _;
location / {
# return 200;
}
}
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×