error ngx_http_send_header

Maxim Dounin mdounin at mdounin.ru
Wed May 16 19:11:28 UTC 2018


Hello!

On Wed, May 16, 2018 at 10:02:02AM -0700, Dk Jack wrote:

> Hi,
> I am trying to send a custom response in my module when I encounter a
> request for a specific location. For example, I have setup my location as
> follows:
> 
>   server {
>     listen 9999;
>       location /__my_module {
>       set_mymodule_location;
>       log_not_found off;
>     }
>   }
> 
> In my location handler, I am trying to respond to a request for this
> location. I get the response I expect at the client. However, I am seeing
> the following error message logged in error.log:
> 
> 2018/05/16 00:38:07 [alert] 225#225: *158 header already sent, client:
> 127.0.0.1, server: , request: "GET /__my_module HTTP/1.1", host:
> "localhost:9999"
> 
> Can someone let me know how I can prevent this error from showing up. Also,
> the return value from ngx_http_send_header is always an NGX_ERROR. Not sure
> why...

The error indicate that you are trying to sent a response header 
at the point where it was already sent.  You have to invistigate 
why and where it happens, and fix things.  Most likely you are 
trying to add your code in a wrong place.

-- 
Maxim Dounin
http://mdounin.ru/


More information about the nginx-devel mailing list