Re: SSL_shutdown() failed (SSL: ... bad write retry)

2020-08-21 Thread Maxim Dounin
Hello! On Thu, Aug 20, 2020 at 11:47:08PM +0300, Sergey Kandaurov wrote: > > > On 20 Aug 2020, at 22:16, Maxim Dounin wrote: > > > > Hello! > > > > On Thu, Aug 20, 2020 at 09:30:37AM -0400, vergil wrote: > > > >> Maxim Dounin Wrote: > >> --

Re: Multiple MAP implementation issue

2020-08-21 Thread Maxim Dounin
Hello! On Fri, Aug 21, 2020 at 11:46:44AM -0400, brutuz wrote: > I have this map statements > > === This works well == > > map http_header1 var1 { > default "abc" > 1a "def" > 1b "ghi" > > } > > map http_header2 var2 { > default "123" > 2a "445" > 2b "678" > } > > map http_header3 finalv

Re: SSL_shutdown() failed (SSL: ... bad write retry)

2020-08-21 Thread vergil
Yes, can confirm that this patch solved the issue. Regards, Alexander. Posted at Nginx Forum: https://forum.nginx.org/read.php?2,289087,289155#msg-289155 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Multiple MAP implementation issue

2020-08-21 Thread brutuz
I have this map statements === This works well == map http_header1 var1 { default "abc" 1a "def" 1b "ghi" } map http_header2 var2 { default "123" 2a "445" 2b "678" } map http_header3 finalvar { default "" $var1 $var2 } == Now I need to do regex on http_header3..