/bin/zsh — request trace
trace started: client:~$ GET /unknown HTTP/1.1 server:~$ 404 Not Found hint: press R to return, or click the button above. client:~$
Recent logs
--:--:--routes — 404.example
// 404 handler example (pseudo)
function handle404(req) {
return {
status: 404,
body: JSON.stringify({
error: "not_found",
path: req.path,
back: "https://realystic.com"
})
};
}