dev-graft / dev-graft-infra

dev-graft infra repository
Apache License 2.0
0 stars 0 forks source link

NginX 웹 서버 구성 #2

Closed PCloud63514 closed 12 hours ago

PCloud63514 commented 12 hours ago

Content

CPU / MEM 사용률이 적은 것이 주요 선택 이유.

Image

아래 내용 처리

$ sudo dnf install nginx -y
$ sudo systemctl start nginx
$ sudo systemctl enable nginx

# 상태 확인
$ sudo systemctl status nginx

$ sudo firewall-cmd --permanent --add-service=http
$ sudo firewall-cmd --permanent --add-service=https
$ sudo firewall-cmd --reload

# SELinux status가 enabled일 경우 다음 처리.
$ sestatus 
# SELinux에서 Nginx 정책 허용
$ sudo setsebool -P httpd_can_network_connect on
$ sudo setsebool -P httpd_enable_homedirs on