Reg. POST data body

2013-05-01 Thread ESWAR RAO
Hi All, I am trying to collect the POST request body using $request_body but I am unable to collect it in config file: # curl -X POST -d "param1=value1¶m2=value2" ' http://localhost:8031/test1/test2/' --header "Content-Type:application/json" location /test1 { ...

Re: load balancing according to url

2013-04-29 Thread ESWAR RAO
Hi Mex, Thanks for the response. But I don't think the sticky-module is going to help in my case where the load balancing is to be done based on a particular filed in the URL. Thanks Eswar On Mon, Apr 29, 2013 at 12:56 PM, mex wrote: > there's a sticky-module (3rd-party), maybe this works ou

Re: load balancing according to url

2013-04-29 Thread ESWAR RAO
> } > > > appa > > > > On Mon, Apr 29, 2013 at 8:27 AM, ESWAR RAO wrote: > >> Hi All, >> >> Can anyone please help me with the below requirement. >> >> Host machine contains a plugin and it communicates with a plugin handler >> runn

load balancing according to url

2013-04-28 Thread ESWAR RAO
Hi All, Can anyone please help me with the below requirement. Host machine contains a plugin and it communicates with a plugin handler running on backend servers and nginx is used to load balance the requests. host machine(plugin) = >nginx as load balancer =>3 backend servers which hosts

Reg. nginx_tcp_proxy_module

2013-04-22 Thread ESWAR RAO
ly nginx at 8081, it should be shielded from failover of 8031 server. Can anyone please help me if my understanding is wrong ?? Thanks Eswar Rao ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Reg. automatic failover

2013-04-09 Thread ESWAR RAO
Hi All, I observed that automatic failover behaviour is not working with my nginx server. # /opt/nginx/sbin/nginx -v nginx version: nginx/1.2.8 nginx server is running with following conf: upstream lb_get { server localhost:8031 ; server localhost:8032 ; } server { lis