How to block a country code per hostname in Varnish Follow
This article describes blocking access to a hostname and country code in Section.
sub vcl_recv {
if (req.http.host == "www.aussiedomain.com.au" && req.http.section-io-geo-country != "AU"){
return (synth(403, "Forbidden"));
}
....
Related
Edge proxy https://www.section.io/docs/reference/edge-proxy/
Comments
0 comments
Article is closed for comments.