root@hack3rs:/srv/www$ curl -i /418/
HTTP/1.1 418 I'm a Teapot
An intentional novelty response — not a real server error.
status-summary.log
HTTP 418 I'm a Teapot
RFC 2324 defined this as a joke. It shows up in test routes, demos, and the occasional deliberate refusal. Not a production availability incident.
Verify you hit the right environment. This is most often a mock service, a dev route, or an intentional placeholder response.
likely-causes.lst
- $Test or demo route configured to return 418.
- $Health check endpoint using a novelty placeholder.
- $Request was misrouted to a sandbox or mock service.
- $Developer used 418 to signal an unsupported operation.
recovery-steps.md
- Confirm you are hitting the correct environment (dev, staging, or prod).
- Check route configuration and mock service registration in the request path.
- Replace novelty status codes with appropriate standard ones before production.
- Use 400, 403, 404, or 405 for real client-error conditions.
quick-actions.sh
ops-note.txt
Use these pages for debugging and user guidance. In production, configure your host or reverse proxy to return the matching HTTP status code for the route (especially for 418 and 404/500 responses) rather than serving a 200 with error-themed content.