Re: nginx-1.15.0

2018-06-05 Thread Roman Arutyunyan
Hello Grzegorz, On Tue, Jun 05, 2018 at 07:04:22PM +0200, Grzegorz Kulewski wrote: > W dniu 05.06.2018 o 16:01, Maxim Dounin pisze: > > Changes with nginx 1.15.005 Jun 2018 > [snip]> *) Feature: now the stream module can handle multiple incoming UDP > >

Re: nginx-1.15.0

2018-06-05 Thread Grzegorz Kulewski
W dniu 05.06.2018 o 16:01, Maxim Dounin pisze: > Changes with nginx 1.15.005 Jun 2018 [snip]> *) Feature: now the stream module can handle multiple incoming UDP >datagrams from a client within a single session. Does this mean that the performance

Re: [nginx-announce] nginx-1.15.0

2018-06-05 Thread Kevin Worthington
Hello Nginx users, Now available: Nginx 1.15.0 for Windows https://kevinworthington.com/nginxwin1150 (32-bit and 64-bit versions) These versions are to support legacy users who are already using Cygwin based builds of Nginx. Officially supported native Windows binaries are at nginx.org. Announc

Re: nginx-1.15.0

2018-06-05 Thread Maxim Konovalov
On 05/06/2018 17:39, Ralph Seichter wrote: > Hello Maxim. > >> You are probably talking about nginx-unit project, right? > > You are right, my bad. I am waiting anxiously for that nginx-unit > feature, and I have mistaken the announcement message. > No problem -- unit-1.2 release is anticipated

Re: nginx-1.15.0

2018-06-05 Thread Ralph Seichter
Hello Maxim. > You are probably talking about nginx-unit project, right? You are right, my bad. I am waiting anxiously for that nginx-unit feature, and I have mistaken the announcement message. -Ralph ___ nginx mailing list nginx@nginx.org http://mailm

Re: nginx-1.15.0

2018-06-05 Thread Maxim Dounin
Hello! On Tue, Jun 05, 2018 at 04:29:02PM +0200, Ralph Seichter wrote: > Hello nginx team, > > a while ago it was mentioned here that the June release was planned to > contain the new feature of passing environment variables to individual > apps by using dynamic configuration data. > > I don't

Re: nginx-1.15.0

2018-06-05 Thread Maxim Konovalov
Hi Ralph, On 05/06/2018 17:29, Ralph Seichter wrote: > Hello nginx team, > > a while ago it was mentioned here that the June release was planned to > contain the new feature of passing environment variables to individual > apps by using dynamic configuration data. > > I don't see this mentioned

Re: nginx-1.15.0

2018-06-05 Thread Ralph Seichter
Hello nginx team, a while ago it was mentioned here that the June release was planned to contain the new feature of passing environment variables to individual apps by using dynamic configuration data. I don't see this mentioned in the release notes? -Ralph __

nginx-1.15.0

2018-06-05 Thread Maxim Dounin
Changes with nginx 1.15.005 Jun 2018 *) Change: the "ssl" directive is deprecated; the "ssl" parameter of the "listen" directive should be used instead. *) Change: now nginx detects missing SSL certificates during configuration testing

Re: large_client_header_buffers: Custom error pages are not working

2018-06-05 Thread prajos
Thanks Maxim Dounin, The trick worked. I did something like the following: server { large_client_header_buffers 12 64; ... error_page 494 =400 /400.json; error_page 400 /400.json; location = /400.json { add_header Funky-Header1 'Funky Value' always; root /etc/nginx/error-files/;

Re: large_client_header_buffers: Custom error pages are not working

2018-06-05 Thread Maxim Dounin
Hello! On Tue, Jun 05, 2018 at 05:34:10AM -0400, prajos wrote: > Hi there, > I'm using nginx nginx version 1.12.0 as a reverse proxy to my application > servers. > I allow certain top level checks like header size and count to be done at > nginx level. > > The server block looks like the follow

large_client_header_buffers: Custom error pages are not working

2018-06-05 Thread prajos
Hi there, I'm using nginx nginx version 1.12.0 as a reverse proxy to my application servers. I allow certain top level checks like header size and count to be done at nginx level. The server block looks like the following: server { listen443 ssl default_server; .. large_client_header