延长WAF默认封禁时间:阻止动作从60秒增加到300秒;SYN Flood从600秒延长到1800秒

This commit is contained in:
GoEdgeLab
2022-08-20 22:38:12 +08:00
parent 991b343a89
commit 7ab5df4ad7
3 changed files with 5 additions and 5 deletions

View File

@@ -17,6 +17,6 @@ func DefaultHTTPFirewallBlockAction() *HTTPFirewallBlockAction {
return &HTTPFirewallBlockAction{
StatusCode: http.StatusForbidden,
Body: "Blocked By WAF",
Timeout: 60,
Timeout: 300,
}
}