<div dir="ltr">Hi all,<div><br></div><div>Excuse my likely noobish mistakes - still getting used to it all. I'm using vsthrottle in vcl_recv to force full cache hits instead of denying requests for request bursts, however I'm having some trouble setting a custom ttl in vcl_backend_response for those which trigger. Is there a way to perhaps set a header/cookie or mark the packet/object in vcl_recv, then set a different beresp.ttl if it exists? For example, I currently have this in vcl_recv:</div><div><br></div><div><div>        if (vsthrottle.is_denied(req.url, 50, 10s)) {</div><div>                unset req.http.Cookie;<br></div><div>                unset req.http.User-Agent;</div><div>                unset req.http.Pragma;</div><div>                unset req.http.Cache-Control;</div><div>                set req.http.Attack = "triggered";</div><div>                return (hash);<br></div><div>        }</div></div><div><br></div><div>Is it possible to trigger an action in vcl_backend_response based on the "Attack" header, or something similar? Any help is greatly appreciated!</div><div><br></div><div>Best Regards,</div><div>Andrei</div></div>