<div dir="ltr">I found the same question asked on StackOverflow a few years ago: 

<a href="https://stackoverflow.com/questions/41421111/http-444-no-response-instead-of-404-403-error-pages" target="_blank">https://stackoverflow.com/questions/41421111/http-444-no-response-instead-of-404-403-error-pages</a> <div><br></div><div>The accepted answer says to do it this way:</div><div><br></div><div>```</div><div><font face="monospace">error_page 400 =444 @blackhole;<br><br>location @blackhole {<br>    return 444;<br>}</font></div><div><div>```</div><div><br></div><div>They key that you missed is the "=444" in the error_page directive. It seems like you need BOTH that and the `return 444` in the location block.</div><div><br></div><div>Moshe</div><div><br clear="all"><div><div dir="ltr" data-smartmail="gmail_signature"><div dir="ltr"><br></div></div></div></div></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Mon, Jun 8, 2020 at 4:35 PM Jeffrey 'jf' Lim <<a href="mailto:jfs.world@gmail.com" target="_blank">jfs.world@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">I've been trying and scratching my head over this for some time now.<br>
I've always set up a default server to return 444, but I've not been<br>
able to make it do the 444 *always*. If I get an invalid response,<br>
nginx "skips" the 444 to return 400 instead. I'd rather nginx do the<br>
444, and not return 400.<br>
<br>
I've searched and tried various things (like setting "error_page 400"<br>
to some location, and then returning 444 for that location), but I<br>
have not found anything that really works. Is there just no way to<br>
have a "complete" 444 response? What will it take to do this?<br>
<br>
thanks,<br>
-jf<br>
<br>
--<br>
He who settles on the idea of the intelligent man as a static entity<br>
only shows himself to be a fool.<br>
_______________________________________________<br>
nginx mailing list<br>
<a href="mailto:nginx@nginx.org" target="_blank">nginx@nginx.org</a><br>
<a href="http://mailman.nginx.org/mailman/listinfo/nginx" rel="noreferrer" target="_blank">http://mailman.nginx.org/mailman/listinfo/nginx</a><br>
</blockquote></div>