Re: Nginx and Websphere

2015-05-29 Thread Ravikiran Siddhanti
Hi Francis, We have been nginx with Php fpm for the last one year. In the last 2 months we have been seeing php fpm getting overloaded sometimes and eventually leading to 502/500/504 errors returned by nginx. Could you please help us out? Let me what details you would need I would send them in th

Re: Nginx and Websphere

2015-05-29 Thread Francis Daly
On Fri, May 29, 2015 at 12:51:51PM -0400, sampy wrote: > Francis Daly Wrote: > > > location /WebApp { > > > proxy_pass http://webint; > > > proxy_redirect http://webint:9080/ /; > > > } > But when I change LOCATION from: > location /WebApp { >

Re: Nginx Session Draining

2015-05-29 Thread Valentin V. Bartenev
On Friday 29 May 2015 05:32:11 nginxsantos wrote: > Hi this module is a part of the commercial subscription. > But, looks like the open source version also supports session draining > configuration > I am trying to figure out how to do that any help? > No. It's not supported in the free version.

Re: Nginx and Websphere

2015-05-29 Thread sampy
unclepieman Wrote: --- > Why redirect instead of a proxy_pass? Yes, you're right. Now with proxy_pass works with some minor errors > > -- > Payam Chychi > Network Engineer / Security Specialist > > > On Thursday, May 28, 2015 at 8:50 AM, samp

Re: Nginx and Websphere

2015-05-29 Thread sampy
Francis Daly Wrote: --- > On Fri, May 29, 2015 at 02:01:00AM -0400, sampy wrote: > > Hi there, > > > Now it's near to work! > > Good news. > > > With this configuration: > > > > upstream webint { > > #ip_hash; > >

Re: Supporting special characters in URI for location block

2015-05-29 Thread Igor Sysoev
On 29 May 2015, at 10:14, Rv Rv wrote: > I have a URI with spanish characters that needs to be handled in location > block specific to it e.g. I want to do > location { > } > > However, nginx does not seem to match URI in location block with spanish (or > any other characters including chin

Re: Nginx Session Draining

2015-05-29 Thread nginxsantos
Hi this module is a part of the commercial subscription. But, looks like the open source version also supports session draining configuration I am trying to figure out how to do that any help? Posted at Nginx Forum: http://forum.nginx.org/read.php?2,259238,259263#msg-259263

Re: Nginx and Websphere

2015-05-29 Thread Francis Daly
On Fri, May 29, 2015 at 02:01:00AM -0400, sampy wrote: Hi there, > Now it's near to work! Good news. > With this configuration: > > upstream webint { > #ip_hash; > server wasint-1.domain.com:9080; > server wasint-2.domain.com:9080; > } >

Supporting special characters in URI for location block

2015-05-29 Thread Rv Rv
I have a URI with spanish characters that needs to be handled in location block specific to it e.g. I want to do location {} However, nginx does not seem to match URI in location block  with spanish (or any other characters including chinese). Is this functionality supported?Thanks__