[컴] nginx.conf / sites-enabled/ sites-available

nginx 설정 설명 / 설정 동작 방식 / nginx.conf 와 sites-enabled 의 관계




nginx 설정파일 nginx.conf 에 대해 알아보자. 그리고 nginx.conf 와 sites-enabled / sites-available 과의 관계도 알아보자.

/etc/nginx/nginx.conf

이 녀석이 중심적인 설정(core directives) 이다.
  • user : nignx 를 실행하는 account 설정
  • worker_process : thread 개수 설정
  • pid : pid 파일 경로 지정

http

nginx 가 모든 http traffic 을 다룰 때 사용하는 설정을 해줄 수 있다.
http block 에서 설정할 수 있는 모든 option 들은 아래링크 에서 확인할 수 있다. 아래 링크에 가면 다양한 option 들이 있는데, 옵션의 설명에 Context 를 확인하면 어떤 block 에서 사용한지 알 수 있다.

sites-enabled / sites-available

이 http block 에 보면 sites-enabled 가 include 되어 있다. 그래서 /etc/nginx/sites-enabled/ 에 있는 모든 설정파일이 load 되는 것이다.
보통 이 sites-enabled 는 symbolic link 로 되어 있고, 실제 설정 파일을 sites-available 에 둔다. 그래서 사용할 녀석들만 sites-enabled 에 symbolic link 로 만들어서 넣어두고, 안쓰는 녀석들은 link 를 만들지 않는다. 이런 방식으로 vhost 관리를 편하게 해준다.
http {

        ##
        # Basic Settings
        ##

        sendfile on;
        tcp_nopush on;
        tcp_nodelay on;
        keepalive_timeout 65;
        types_hash_max_size 2048;
        # server_tokens off;

        # server_names_hash_bucket_size 64;
        # server_name_in_redirect off;

        include /etc/nginx/mime.types;
        default_type application/octet-stream;

        ##
        # Logging Settings
        ##

        access_log /var/log/nginx/access.log;
        error_log /var/log/nginx/error.log;

        ##
        # Gzip Settings
        ##

        gzip on;
        gzip_disable "msie6";

        # gzip_vary on;
        # gzip_proxied any;
        # gzip_comp_level 6;
        # gzip_buffers 16 8k;
        # gzip_http_version 1.1;
        # gzip_types text/plain text/css application/json application/x-javascri                                                                             pt text/xml application/xml application/xml+rss text/javascript;

        ##
        # nginx-naxsi config
        ##
        # Uncomment it if you installed nginx-naxsi
        ##

        #include /etc/nginx/naxsi_core.rules;

        ##
        # nginx-passenger config
        ##
        # Uncomment it if you installed nginx-passenger
        ##

        #passenger_root /usr;
        #passenger_ruby /usr/bin/ruby;

        ##
        # Virtual Host Configs
        ##

        include /etc/nginx/conf.d/*.conf;
        include /etc/nginx/sites-enabled/*;
}

See Also

  1. Full Example Configuration | NGINX

Reference

  1. How to Configure Nginx

댓글 없음:

댓글 쓰기