반응형
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
반응형
'Nginx' 카테고리의 다른 글
에러페이지 (404, 500, 502, 503, 504) 발생시 특정페이지로 보내기 (0) | 2019.11.27 |
---|---|
http를 https로 리다이렉팅 시키기 (0) | 2019.10.31 |
nginx 포트 proxy 설정 (0) | 2019.10.30 |