> 백엔드 개발 > PHP 튜토리얼 > nginx 구성 파일에 대한 첫 번째 소개--nginxconf nginx 구성 tcp nginx 구성 jsp nginx 라이브 브로드캐스트 구성

nginx 구성 파일에 대한 첫 번째 소개--nginxconf nginx 구성 tcp nginx 구성 jsp nginx 라이브 브로드캐스트 구성

WBOY
풀어 주다: 2016-07-29 08:53:17
원래의
926명이 탐색했습니다.

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块
{
...
}
...
}
로그인 후 복사

2. 각 블록의 역할

글로벌 블록: 주로 서버의 전반적인 동작에 영향을 미치는 일부 구성을 설정하며, 그 범위는 글로벌이다. 일반적으로 서버의 사용자
, 생성이 허용된 작업자 프로세스(이 구성 항목은 일반적으로 서버 호스트의 코어 수), nginx 프로세스 pid
의 저장 경로, 저장 경로 및 로그 유형 및 구성 파일 소개


events 블록: 주로 서버와 사용자 간의 네트워크 연결에 영향을 미치는 일부 매개변수를 설정합니다. 일반적으로 사용되는 매개변수는 직렬화 활성화 여부입니다. 다중 작업자 프로세스에서의 네트워크 연결 및 마스터가 동시 수신을 허용하는지 여부 다중 네트워크 연결, 각
작업 프로세스가 동시에 지원할 수 있는 최대 연결 수입니다.

http 블록: 대부분의 일반 구성 프록시, 캐시, 로그 정의 및 기타 기능과 타사 구성이 이 모듈에서 설정됩니다.

서버 블록: 및 가상 호스트 관련

위치 블록: 요청 처리, 주소 방향, 응답 제어

이상에서는 nginx의 내용과 구성 파일을 포함하여 처음으로 nginx 구성 파일-nginxconf를 소개했습니다. PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되길 바랍니다.

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿