for certain urls I'd like nginx to return a 'slow' 404.
Example:
nginx will reply to /special_path/non_existing
with a 404, but only after 5 seconds
can nginx do this without / with a plugin?
for certain urls I'd like nginx to return a 'slow' 404.
Example:
nginx will reply to /special_path/non_existing
with a 404, but only after 5 seconds
can nginx do this without / with a plugin?
As suggested in this answer, you can use the
echo_sleep
directive from theecho
module.