centos7 환경에서 작성되었음. 1. yum nginx repo 추가 vi /etc/yum.repos.d/nginx.repo 2. nginx.repo에는 다음과 같이 작성 (OS버전에는 자신의 CentOS 버전을 적으면됨, CentOS7의경우엔 7) [nginx] name=nginx repo baseurl=http://nginx.org/packages/centos/OS버전/$basearch/ gpgcheck=0 enabled=1 3. yum install yum install -y nginx 4. 방화벽 오픈 firewall-cmd --permanent --zone=public --add-port='사용할포트'/tcp firewall-cmd --reload firewall-cmd --list-port..