Nginx를 활용한 로드밸런싱 구현 nginx.conf 확인 파일 위치 : (Ubuntu 기준) /etc/nginx/nginx.conf http { ... include /etc/nginx/sites-enabled/*; }
Nginx 설치 # Nginx 설치 $ sudo apt install nginx # Nginx 실행 $ sudo service nginx start 이로써, Nginx 설치가 끝났다.