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

This commit is contained in:
刘祥超
2022-08-20 22:38:12 +08:00
parent 569f27918a
commit ed0f627ae4
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,
}
}