[ server ][ linux ][ CentOS7 ] nginx 설치 및 방화벽 설정
작성일 22-02-04 10:52
페이지 정보
작성자 웹지기 조회 8,112회 댓글 0건본문
1) yum 외부저장소에 nginx 추가(nginx 관련사항이 없으니 추가해줘야 함)
>> vi /etc/yum.repos.d/nginx.repo
nginx.repo 파일 내용( CentOS7 기준 - 버젼별로 다를 수 있으니 다른버젼은 공식사이트 이용 )
[nginx]
name=nginx repo
baseurl=http://nginx.org/packages/centos/7/$basearch/
gpgcheck=0
enabled=1
2) nginx install
>> yum install -y nginx
3) 방화벽 포트 개방
>> firewall-cmd --permanent --zone=public --add-port=80/tcp
>> firewall-cmd --reload
>> firewall-cmd restart
>> firewall-cmd --list-all
4) nginx 데몬 실행
>> systemctl status nginx
>> systemctl start nginx
>> systemctl enable nginx
5) 등록한 IP 또는 연결한 도메인에 접속해서 nginx 확인.
추천0
비추천 0
댓글목록
등록된 댓글이 없습니다.