tinydu 2020-02-01
upstream bakeaaa {
    
    ip_hash;
    server 127.0.0.1:3001 ; 
}
server {
    listen       80;
    server_name  www.aaa.com;
    #charset koi8-r;
    #access_log  /var/log/nginx/host.access.log  main;
    location / {
    proxy_set_header Host $host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_buffering off;
        
    proxy_pass http://bakeaaa;
    }
    #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   /usr/share/nginx/html;
    }
 
}upstream bakebbb {
    
    ip_hash;
    server 127.0.0.1:3002 ; 
}
server {
    listen       80;
    server_name  www.bbb.com;
    #charset koi8-r;
    #access_log  /var/log/nginx/host.access.log  main;
    location / {
    proxy_set_header Host $host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_buffering off;
        
    proxy_pass http://bakebbb;
    }
    #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   /usr/share/nginx/html;
    }
 
}upstream bakeccc {  
    ip_hash;
    server 192.168.1.129:3001; 
}
server {
    listen       80;
    server_name  www.ccc.com;
    #charset koi8-r;
    #access_log  /var/log/nginx/host.access.log  main;
    location / {
    proxy_set_header Host $host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_buffering off;
        
    proxy_pass http://bakeccc;
    }
    #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   /usr/share/nginx/html;
    }
 
}