对于某些 URL,我希望 nginx 返回“慢速”404。
例子:
nginx 会在 5 秒后回复/special_path/non_existing
404
nginx 可以在没有/有插件的情况下做到这一点吗?
答案1
正如建议的那样这个答案,您可以使用echo_sleep
来自模块的指令echo
。
location /special_path/non_existing {
echo_sleep 1;
return 404;
}
对于某些 URL,我希望 nginx 返回“慢速”404。
例子:
nginx 会在 5 秒后回复/special_path/non_existing
404
nginx 可以在没有/有插件的情况下做到这一点吗?
正如建议的那样这个答案,您可以使用echo_sleep
来自模块的指令echo
。
location /special_path/non_existing {
echo_sleep 1;
return 404;
}