负载均衡配置,

#负载均衡配置,#server localhost:8082; 
    upstream localhost {  
      #同一机器在多网情况下,路由切换,ip可能不同  
      #ip_hash;  
 server 192.168.3.188:8081; 
      server 192.168.3.253:8082;  
     }  
  #代理web服务
    server {  
           listen       80;  
           server_name  localhost;   
   charset utf-8;  
location / {
root   html;
index  index.html index.htm index.jsp;
proxy_pass http://localhost/;
proxy_set_header  X-Real-IP  $remote_addr;  
client_max_body_size  100m;
}
location ~ ^/(WEB-INF)/ {   
deny all;   
}   
error_page   500 502 503 504  /50x.html;  
location = /50x.html {  
root   html;  
}  
   } 

你可能感兴趣的:(java列表)