NGINX 설치
dnf install -y nginx
NGINX 버전 확인
nginx -v
NGINX 자동실행
systemctl enable --now nginx
실행확인
systemctl status nginx
리스너 확인
netstat -lnpt
NGINX 설정파일 위치
- /etc/nginx/nginx.conf
로그파일 위치
- /var/log/nginx
기본 HTML 디렉터리
- /usr/share/nginx/html
'Web > NGINX' 카테고리의 다른 글
NGINX - 05. nginx.conf access log, error log 설정 (0) | 2025.03.23 |
---|---|
NGINX - 04. nginx.conf 의 worker_processes 설정 (0) | 2025.03.23 |
NGINX - 03. nginx.conf 지시문 구조 (0) | 2025.03.23 |
NGINX - 02. nginx.conf 의 지시문 user 설정이 디폴트 설정 nobody 가 아닌 nginx 으로 설정되어 있는 이유에 대하여 (2) | 2025.03.19 |