Set Backend Request first byte timeout in configuration

Sorry to ask a basic questions, I want to stick to the config UI but i find it hard to google consistent answers on how to apply VCL examples. I just want to do this to increase the timeout from the 15s default on backend requests:

if (req.url ~ "^/admin") {
set bereq.first_byte_timeout = 30s;
}

I don’t know how to convert the docs into where that goes in the configuration. In a snippet?

1 Like

I added it in a snippet to run in vcl_pass and it works.

@simesy you’ll also need to set that to run in `vcl_miss` if you want it to apply to all backend requests, not just passes