Nginx

nginx(沒有或有特殊外掛)能否提供“慢”/“延遲”404

  • August 17, 2022

對於某些 url,我希望 nginx 返回一個“慢”404。

例子:

nginx 將回复/special_path/non_existing404,但僅在 5 秒後

nginx可以在沒有/有外掛的情況下做到這一點嗎?

正如此答案中所建議的,您可以使用模組中的echo_sleep指令echo

location /special_path/non_existing {
  echo_sleep 1;
  return 404;
}

引用自:https://serverfault.com/questions/1108298