nginx

同じクライアントからの接続を同じサーバーにする [#td19aa37]

ip_hash;を追加する

 upstream backend {
  ip_hash;
  server 192.168.100.101:8080;
  server 192.168.100.102:8080;
 }

参考URL:http://nginx.org/en/docs/http/ngx_http_upstream_module.html

参考URL:http://og732.hatenadiary.com/entry/2013/05/08/225939