http://nginx.org/en/docs/http/load_balancing.html

https://www.lesstif.com/pages/viewpage.action?pageId=35357063

http {
    upstream backend {
        server my1.example.com;
        server my2.example.com;
        server my3.example.com;
    }
 
    server {
        listen 80;
 
        location / {
            proxy_pass <http://backend>;
            proxy_set_header Host $host;
            proxy_set_header X-Real-IP $remote_addr;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        }
    }
}

로드밸런싱 종류

헬스체크

그외 옵션