Ngnix 입문 nginx. conf 해독

Ngnix 입문 nginx. conf 해독
최근 에 nginx 라 는 웹 서버 에 상당히 관심 이 있어 서 하기 로 결 정 했 습 니 다. 특히 그의 이 프로필 은 저 에 게 관심 이 많 고 블 로 그 를 써 서 제 노트 로 하기 로 했 습 니 다. 더 이상 프로필 을 말 하지 않 겠 습 니 다.
#user  nobody; #  Worker      ,   Master
worker_processes  1; #        ,      ,    CPU    2  CPU  

#error_log  logs/error.log;#            ,[debug | info | notice | warn | error | crit],   error
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;#     PID
###   ===============================================       

#          
events {
   ##use epoll;                
    worker_connections  1024; #    worker       ,Nginx          worker_processes * worker_connections
}		##worker_connections        55535

####===============================================
#  http   ,                 
http {
    include       mime.types;#  nginx         ,   conf/mine.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       ,        main    
    #access_log  logs/access.log  main;

    sendfile        on;#          (    )
    #tcp_nopush     on;#      (    )      

    #keepalive_timeout  0;
    keepalive_timeout  65; #       ,    (    )

    #gzip  on; #  gzip    
	####------------------------------      
	
	#      
    server {
        listen       80; #          80  
        server_name  localhost; #     

        #charset koi8-r; #     (koi8-r      )

        #access_log  logs/host.access.log  main; #            ,main     
		#       /   ,         /,   location        
        location / {
            root   html; #root                ,   nginx       html  
            index  index.html index.htm;#         
        }

        #error_page  404              /404.html; #  404  

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html; #  50x    
		#      
        location = /50x.html {
            root   html;
        }
		#PHP          Apache  
        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ { #     php     
        #    proxy_pass   http://127.0.0.1;
        #}
		#PHP          FastCGI  
        # 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;
        #}
		#     .htaccess   
        # 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  (         ,    ,    443) http        80,       
    # 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;
    #    }
    #}

}

그 다음 에 nginx 5 대 응용 정태 사이트, 부하 균형, 정태 대리, 동정 분리, 가상 호스트 도 나온다.

좋은 웹페이지 즐겨찾기