Nginx 기본 명령어## Nginx 시작sudo systemctl start nginx## Nginx 중지sudo systemctl stop nginx## Nginx 재시작sudo systemctl restart nginx## Nginx 상태 확인sudo systemctl status nginx## Nginx 구성 파일 문법 검사sudo nginx -t## Ngix 리로드 (구성 파일 변경 후)sudo systemctl reload nginx 로그 확인## 액세스 로그 확인sudo tail -f /var/log/nginx/access.log## 에러 로그 확인sudo tail -f /var/log/nginx/error.log 구성 파일 관리## Nginx 기본 구성 파일 위치/etc/nginx/ngi..