mirror of
https://gitee.com/samwaf/SamWaf.git
synced 2025-12-06 06:58:54 +08:00
18 lines
816 B
Go
18 lines
816 B
Go
package request
|
|
|
|
type WafHostEditReq struct {
|
|
CODE string `json:"code"`
|
|
Host string `json:"host"` //域名
|
|
Port int `json:"port"` //端口
|
|
Ssl int `json:"ssl"` //是否是ssl
|
|
REMOTE_SYSTEM string `json:"remote_system"` //是宝塔 phpstudy等
|
|
REMOTE_APP string `json:"remote_app"` //是什么类型的应用
|
|
Remote_host string `json:"remote_host"` //远端域名
|
|
Remote_ip string `json:"remote_ip"` //远端指定IP
|
|
Remote_port int `json:"remote_port"` //远端端口
|
|
REMARKS string `json:"remarks"` //备注
|
|
Certfile string `json:"certfile"` // 证书文件
|
|
Keyfile string `json:"keyfile"` // 密钥文件
|
|
DEFENSE_JSON string `json:"defense_json"` //自身防御 json
|
|
}
|