Distinguish origin from Fastly errors
Difficulty level: Beginner
Objective
This challenge includes two requests. One will yield a 503
(service unavailable) response from the origin, and another will return a synthetic 503
generated by Fastly, because the origin request times out.
Write VCL that will add a header to all error responses (status code >= 400), identifying whether the 503
response was generated by Fastly or generated by the origin. The response header names must be x-origin-error
(for an error served by the origin) and x-fastly-error
(for the error generated by Fastly). It doesn't matter what the values of the headers are, but "1" would be fine.
User contributed notes
BETADo you see an error in this page? Do have an interesting use case, example or edge case people should know about? Share your knowledge and help people who are reading this page! (Comments are moderated; for support, please contact support@fastly.com)