nginx 의 순수 에이전트 퍼 가기 간단 한 설정

746 단어 [웹]구조nginx

worker_processes  1;
events {
    worker_connections  1024;
}
http {
    include       mime.types;
    default_type  application/octet-stream;
    sendfile        on;
    keepalive_timeout  65;
    server {
	#  80  
        listen       80;
        server_name  localhost;

        #charset utf-8;

        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
	#           8080  
	location / {
	   proxy_pass   http://127.0.0.1:8080;	
	}
	#    /aaa/    9001  
        location ^~ /aaa/ {
           proxy_pass   http://127.0.0.1:9001;
        }
	#    /bbb/    9002  
        location ^~ /bbb/ {
           proxy_pass   http://127.0.0.1:9002;
        }
    }
}

좋은 웹페이지 즐겨찾기