nginx.conf 위치

기본적으로 Nginx conf 파일은 다음 경우에 따라 경로가 나뉠 수 있다.

설치 방법이나 OS에 따라 이 경로는 바뀔 수 있기 때문에 다음과 같은 명령어를 사용하여 찾아보자.

find / -name "nginx.conf"

각 설정파일의 역할

기본적인 nginx.conf 설정 파일의 구조

worker_processes  1;
events {
    worker_connections  1024;
}
http { 
    include       mime.types;
    server {
        listen       80;
        location / {
            root   html;
            index  index.html index.htm;
        }
    }
}

이 구조에서 한 단락씩 살펴보도록 하자.

Core 모듈 설정

worker_processes 1;

에 해당하는 구문이다.