1. nginx 구성 파일 nginx.conf를 열면 초기 내용은 다음과 같습니다.
#user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/nginx.pid; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; #log_format main '$remote_addr - $remote_user [$time_local] "$request" ' # '$status $body_bytes_sent "$http_referer" ' # '"$http_user_agent" "$http_x_forwarded_for"'; #access_log logs/access.log main; sendfile on; #tcp_nopush on; #keepalive_timeout 0; keepalive_timeout 65; #gzip on; server { listen 80; server_name localhost; #charset koi8-r; #access_log logs/host.access.log main; location / { root html; index index.html index.htm; proxy_pass http://192.168.56.202:8080; } #error_page 404 /404.html; # redirect server error pages to the static page /50x.html # error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } # proxy the PHP scripts to Apache listening on 127.0.0.1:80 # #location ~ \.php$ { # proxy_pass http://127.0.0.1; #} # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 # #location ~ \.php$ { # root html; # fastcgi_pass 127.0.0.1:9000; # fastcgi_index index.php; # fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name; # include fastcgi_params; #} # deny access to .htaccess files, if Apache's document root # concurs with nginx's one # #location ~ /\.ht { # deny all; #} } # another virtual host using mix of IP-, name-, and port-based configuration # #server { # listen 8000; # listen somename:8080; # server_name somename alias another.alias; # location / { # root html; # index index.html index.htm; # } #} # HTTPS server # #server { # listen 443 ssl; # server_name localhost; # ssl_certificate cert.pem; # ssl_certificate_key cert.key; # ssl_session_cache shared:SSL:1m; # ssl_session_timeout 5m; # ssl_ciphers HIGH:!aNULL:!MD5; # ssl_prefer_server_ciphers on; # location / { # root html; # index index.html index.htm; # } #} }
... #全局块 events #event块 { ... } http #http块 { ... #http全局块 } server #server块 { ... #server全局块 location [PATTERN] #location块 { ... } location [PATTERN] #location块 { ... } } server #server块 { ... } ... }
글로벌 블록: 주로 서버의 전반적인 동작에 영향을 미치는 일부 구성을 설정하며, 그 범위는 글로벌이다. 일반적으로 서버의 사용자
, 생성이 허용된 작업자 프로세스(이 구성 항목은 일반적으로 서버 호스트의 코어 수), nginx 프로세스 pid
의 저장 경로, 저장 경로 및 로그 유형 및 구성 파일 소개
events 블록: 주로 서버와 사용자 간의 네트워크 연결에 영향을 미치는 일부 매개변수를 설정합니다. 일반적으로 사용되는 매개변수는 직렬화 활성화 여부입니다. 다중 작업자 프로세스에서의 네트워크 연결 및 마스터가 동시 수신을 허용하는지 여부 다중 네트워크 연결, 각
작업 프로세스가 동시에 지원할 수 있는 최대 연결 수입니다.
http 블록: 대부분의 일반 구성 프록시, 캐시, 로그 정의 및 기타 기능과 타사 구성이 이 모듈에서 설정됩니다.
서버 블록: 및 가상 호스트 관련
위치 블록: 요청 처리, 주소 방향, 응답 제어