<div dir="ltr">Sorry, I wasn't actually in front of a server where I could check it before I sent that.<div><br></div><div>I just spent some time playing around with it on one of my servers, and I found that the second answer there does seem to work:</div><div><br></div><div>```</div><font face="monospace">location / {<br>    return 444;<br>}<br></font><div><font face="monospace"><br></font></div><div><font face="monospace">error_page 400 500 =444 /444.html;<br><br>location = /444.html {<br>    return 444;<br>}</font><br></div><div>```</div><div><br></div><div>I tested this using curl (using "curl -k <a href="https://example.com/%" target="_blank">https://example.com/%</a>" as my bad request to trigger the 400) and it seems to work as desired in HTTP 1.0 and 1.1. However, when using HTTP2, curl just hangs instead of showing an error that the connection is closed. If your site doesn't respond to HTTP2 (which is fine since it's a do-nothing site anyway), then you don't have to worry about it.</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><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Mon, Jun 8, 2020 at 8:40 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">Thanks, Moshe. I've tried that, but I've found that if you send<br>
anything that's invalid at the HTTP layer by nginx, like talking http<br>
to a https server, or sending invalid http (random junk), you'll get<br>
either 400 or 500. It's still not "complete", unfortunately.<br>
<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>
On Tue, Jun 9, 2020 at 4:54 AM Moshe Katz <<a href="mailto:moshe@ymkatz.net" target="_blank">moshe@ymkatz.net</a>> wrote:<br>
><br>
> 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" rel="noreferrer" target="_blank">https://stackoverflow.com/questions/41421111/http-444-no-response-instead-of-404-403-error-pages</a><br>
><br>
> The accepted answer says to do it this way:<br>
><br>
> ```<br>
> error_page 400 =444 @blackhole;<br>
><br>
> location @blackhole {<br>
>     return 444;<br>
> }<br>
> ```<br>
><br>
> 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.<br>
><br>
> Moshe<br>
><br>
><br>
><br>
> 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>
>><br>
>> 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>
><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>
_______________________________________________<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>