Configuration
# WAF avanzado
sub vcl_recv {
if (req.http.host == "www.mi-dominio.es") {
set req.http.TCDN-WAF-Enabled = "true";
}
}Conditional deactivation
# WAF avanzado
sub vcl_recv {
if (req.http.host == "www.mi-dominio.es") {
set req.http.TCDN-WAF-Enabled = "true";
if (req.url ~ "^/path/sin/waf/") {
unset req.http.TCDN-WAF-Enabled;
}
}
}
Including exceptions
Last updated
Was this helpful?
