(res)
| 420 | } |
| 421 | |
| 422 | function rejectUnavailable(res) { |
| 423 | res.writeHead(503, { "Content-Type": "text/plain; charset=utf-8" }); |
| 424 | res.end("Service Unavailable (no backend configured for this route)"); |
| 425 | } |
| 426 | |
| 427 | function notFound(res) { |
| 428 | res.writeHead(404, { "Content-Type": "text/plain; charset=utf-8" }); |