Re: Can response code be 444 in error_page

2014-11-05 Thread Maxim Dounin
Hello! On Wed, Nov 05, 2014 at 09:00:30AM -0500, bluekyu wrote: [...] > I translated and read the report. I understood the bug is related with only > error_page 400. > If this is correct, my example may be inappropriate. > > My question was whether the response code of error_page can be 444, or

Re: Can response code be 444 in error_page

2014-11-05 Thread bluekyu
Maxim Dounin Wrote: --- > Hello! > > On Wed, Nov 05, 2014 at 04:32:15AM -0500, bluekyu wrote: > > > Hello. > > > > I want to reject a connection when some errors (400, 403, ...) > occur, so I > > used error code 444 in error_page like this: > >

Re: Can response code be 444 in error_page

2014-11-05 Thread Maxim Dounin
Hello! On Wed, Nov 05, 2014 at 04:32:15AM -0500, bluekyu wrote: > Hello. > > I want to reject a connection when some errors (400, 403, ...) occur, so I > used error code 444 in error_page like this: > > error_page 400 =444 @reject_conn; > location @reject_conn { > return 444; > } > > When

Can response code be 444 in error_page

2014-11-05 Thread bluekyu
Hello. I want to reject a connection when some errors (400, 403, ...) occur, so I used error code 444 in error_page like this: error_page 400 =444 @reject_conn; location @reject_conn { return 444; } When I tested it, the network connection was waiting continuously, not closed (reseted). I wo