# If the requestor is googlebot (which we are simulating in the
# request settings of this fiddle) and we have stale content for the
# requested URL, serve it.
if (req.http.User-Agent ~ "googlebot" && stale.exists) {
  return(deliver_stale);
}