tarpit.vcl 277 B

12345678910
  1. if (
  2. fastly.ff.visits_this_service == 0 && (
  3. (resp.status == 403 && !resp.http.x-403-from-backend) ||
  4. resp.status == 406
  5. # || resp.status == 429
  6. )
  7. ) {
  8. #https://developer.fastly.com/reference/vcl/functions/miscellaneous/resp-tarpit/
  9. resp.tarpit(2, 100);
  10. }