Nginx 역방향 에이전트 설정 요약

5418 단어 nginx부하 균형
부하 균형 기술 은 여러 가지 가 있 는데 자주 사용 하 는 4 / 7 층 부하 균형 기술 은 많은 것 을 포함 하고 Nginx 역방향 대 리 는 그 중의 한 방안 이다.
다음 설정 은 Nginx 역방향 프 록 시 설정 샘플 입 니 다.
user  www www;
worker_processes  10;

error_log  /data1/logs/error.log crit;

pid        /usr/local/webserver/nginx/nginx.pid;

worker_rlimit_nofile 51200;

events {
	use epoll;
    worker_connections  51200;
}


http {
    include       mime.types;
    default_type  application/octet-stream;
	
	#charset utf-8
	
	server_names_hash_buckets_size 128;
	client_header_buffer_size 32k;
	large_client_header_buffers 4 32k;
	
    #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;
	
	tcp_nodelay on;
	
	fastcgi_connect_timeout 300;
	fastcgi_send_timeout 300;
	fastcgi_read_timeout 300;
	fastcgi_buffer_size 64k;
	fastcgi_buffers 4 64k;
	fastcgi_busy_buffers_size 128k;
	fastcgi_temp_file_write_size 128k;

    gzip on;
	gzip_min_length 1k;
	gzip_buffers 4 16k;
	gzip_http_version 1.1;
	gzip_comp_level 2;
	gzip_types text/plain application/javascript text/css application/xml;
	gzip_vary on;
	
	client_max_body_size 300m;
	client_body_buffer_size 128k;
	
	proxy_connect_timeout 600;
	proxy_read_timeout 600;
	proxy_send_timeout 600;
	proxy_buffer_size 16k;
	proxy_buffers 4 32k;
	proxy_busy_buffers_size 64k;
	proxy_temp_file_write_size 64k;
	
	upstream php_server_pool {
	  server 192.168.1.10:80 weight=4 max_fails=2 fail_timeout=30s;
	  server 192.168.1.11:80 weight=4 max_fails=2 fail_timeout=30s;
	  server 192.168.1.12:80 weight=4 max_fails=2 fail_timeout=30s;
	}
	
	upstream message_server_pool {
	  server 192.168.1.13:3245;
	  server 192.168.1.14:3245 down;
	}
	
	upstream php_server_pool {
	  server 192.168.1.15:80 weight=1 max_fails=2 fail_timeout=30s;
	  server 192.168.1.16:80 weight=1 max_fails=2 fail_timeout=30s;
	  server 192.168.1.17:80 weight=1 max_fails=2 fail_timeout=30s;
	  server 192.168.1.18:80 weight=1 max_fails=2 fail_timeout=30s;
	}
	
    server {
        listen       80;
        server_name  www.yourdomain.com;

        #charset koi8-r;

        access_log  /data1/logs/www.yourdomain.com_access.log;
		
		location / {
			proxy_next_upstream http_502 http_504 error timeout invalid_header;
			proxy_pass http://php_server_pool;
			proxy_set_header Host www.yourdomain.com;
			proxy_set_header X-Forwarded-For $remote_addr;
        }

        # 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;
        #}
    }
	
	server {
		listen 80;
		server_name www1.yourdomain.com;
		
		localtion /message/ {
			proxy_pass http://message_server_pool;
			proxy_set_header Host $host;
		}
		
		localtion / {
			proxy_pass http://php_server_pool;
			proxy_set_header Host $host;
			proxy_set_header X-Forwarded-For $remote_addr;
		}
		
		access_log  /data1/logs/message.yourdomain.com_access.log;
	}

	server {
		listen 80;
		server_name bbs.yourdomain.com *.bbs.yourdomain.com;
		
		location / {
			proxy_pass http://bbs_server_pool;
			proxy_set_header Host $host;
			proxy_set_header X-Forwarded-For $remote_addr;
		}
		
		access_log off;
	}
	
    # 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;
    #    }
    #}

}

이상 설정 에서 upstream 은 proxy 에서 한 그룹 을 설정 하 는 데 사 용 됩 니 다.pass 또는 fastcgipass 에서 사용 하 는 프 록 시 서버 입 니 다. 기본 부하 균형 방식 은 폴 링 입 니 다.server 는 서버 의 이름과 인 자 를 지정 하 는 데 사 용 됩 니 다. 이름 은 도 메 인 이름, IP 주소, 포트 번호 또는 UNIX Socket 일 수 있 습 니 다.
proxy_pass 와 fastcgipass 는 역방향 에이전트 의 upstream 군집 을 설정 할 수 있 습 니 다.
proxy_set_header 는 역방향 프 록 시 서버 에 요청 을 보 낼 때 지정 한 Header 정 보 를 추가 하 는 데 사 용 됩 니 다.Host 인 자 를 사용 하 는 것 은 백 엔 드 서버 가 어떤 가상 호스트 로 처리 되 는 지 알 기 위해 서 입 니 다. X - Forward - For 를 사용 하 는 것 은 백 엔 드 서버 가 $ 를 통과 할 수 있 도록 하기 위해 서 입 니 다.SERVER ["HTTP X FORWARDED FOR"] 사용자 의 실제 IP 를 가 져 옵 니 다.

좋은 웹페이지 즐겨찾기