nginx.conf & default.conf nginx.conf : NginX 글로벌 설정, 최초 1회만 설정 후 변경이 자주 일어나지 않는다.default.conf : 특정 도메인/포트 (개별 사이트)에 대한 설정, default.conf를 사용해도 되지만 개발자가 직접 conf 파일을 생성해도 된다. /etc/nginx 경로로 이동cat nginx.confnginx.confuser nginx;worker_processes auto;error_log /var/log/nginx/error.log notice;pid /run/nginx.pid;events { worker_connections 1024;}http { include /etc/nginx/mime.t..