gpt4 book ai didi

performance - 如何 : the minimal server to serve zero length answers

转载 作者:行者123 更新时间:2023-12-04 03:26:45 24 4
gpt4 key购买 nike

我遇到了一个有趣的问题:我有一个 FreeBSD 8.2 服务器,我需要设置一个 web 服务器来回答任何请求的零 (0) 长度答案。只需“200 OK”和零正文。

好的,我可以设置 nginx(并且已经这样做了)并将 404 错误文档设置为/dev/null,但我认为也许有更优化和优雅的解决方案?我知道有输出 1x1 gif 的 nginx 模块,是否有类似的零长度文件?

最佳答案

可以从 Nginx 返回一个状态码:

location /empty {
return 200;
}

注意 通常,HTTP 状态代码204 No Content 的意思是“我已完成请求,但没有要返回的正文”。您可以用同样的方式返回:

location /empty {
return 204;
}

关于performance - 如何 : the minimal server to serve zero length answers,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9479718/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com