vagrant provision admin-rp1: -> following new vhost is generated:
```
root@rp1:/etc/varnish/includes# cat 90_vhost_forbidden_access_swh-rproxy3.inria.fr.vcl
# vhost_forbidden_access_swh-rproxy3.inria.fr.vcl
#
# Settings for swh-rproxy3.inria.fr vhost to refuse access
#
# File managed by puppet. All modifications will be lost.
sub vcl_recv {
if (
req.http.host ~ "^(?i)128\.93\.166\.10(:[0-9]+)?$" ||
req.http.host ~ "^(?i)swh\-rproxy3\.inria\.fr(:[0-9]+)?$"
) {
return(synth(403, "Forbidden access"));
}
}
```