본문 바로가기
Tech

centos7 nginx 설치

by ohrohi 2019. 10. 22.
반응형

1. nginx 저장소 추가

# vi /etc/yum.repos.d/nginx.repo

 

[nginx]

name=nginx repo

baseurl=http://nginx.org/packages/OS/OSRELEASE/$basearch/

gpgcheck=0

enabled=1

 

* OS, OSRELEASE 부분에 상황에 맞게 수정해준다 

ex) centos/7/

 

2. nginx 설치

# yum -y install nginx


3. 방화벽 설정

# firewall-cmd --permanent --zone=public --add-service=http

# firewall-cmd --permanent --zone=public --add-service=https

# firewall-cmd --reload

 

4. nginx 실행 및 부팅시 자동실행 설정

# systemctl start nginx

# systemctl enable nginx

반응형

'Tech' 카테고리의 다른 글

sendmail 메일발송 느리게 나갈때  (0) 2019.12.24
systemctl 명령어 모음  (0) 2019.12.24
centos7 kst로 변경  (0) 2019.09.11
cifs, nfs 마운트 에러 -112 발생시  (0) 2019.09.10
git 최초 push 할 때 주의사항  (0) 2019.05.20