NGINX는 고성능 HTTP 서버 및 리버스 프록시 서버로 널리 사용됩니다. 설치 방법은 사용 중인 운영 체제에 따라 다르며, 여기서는 Ubuntu/Debian 계열과 CentOS/RHEL 계열 시스템에서의 설치 방법을 다룹니다.
sudo apt update sudo apt install nginx -y
sudo systemctl start nginx # NGINX 시작 sudo systemctl enable nginx # 부팅 시 자동 시작 설정 sudo systemctl status nginx # NGINX 상태 확인
기본적으로 NGINX는 HTTP(80)와 HTTPS(443) 포트를 사용합니다. UFW 방화벽이 활성화된 경우 포트를 열어야 합니다.
sudo ufw allow 'Nginx Full' sudo ufw reload
CentOS 8 이상에서는 기본 리포지토리에 NGINX가 포함되어 있습니다. 그렇지 않다면 직접 추가해야 합니다.
sudo yum install epel-release -y
sudo yum install nginx -y
sudo systemctl start nginx # NGINX 시작 sudo systemctl enable nginx # 부팅 시 자동 시작 설정 sudo systemctl status nginx # NGINX 상태 확인
sudo firewall-cmd --permanent --add-service=http sudo firewall-cmd --permanent --add-service=https sudo firewall-cmd --reload
브라우저를 열고 서버의 IP 주소 또는 도메인을 입력하여 NGINX 기본 페이지가 표시되는지 확인합니다. 기본 페이지는 아래 경로에 있습니다: