实现WAF策略部分功能

This commit is contained in:
刘祥超
2020-10-06 21:02:21 +08:00
parent 0a3c46ac0f
commit 88d4aa183a
33 changed files with 3086 additions and 252 deletions

View File

@@ -0,0 +1,8 @@
package firewallconfigs
// url client configure
type HTTPFirewallBlockAction struct {
StatusCode int `yaml:"statusCode" json:"statusCode"`
Body string `yaml:"body" json:"body"` // supports HTML
URL string `yaml:"url" json:"url"`
}