【新增部署】雷池WAF网站、雷池WAF面板

This commit is contained in:
陈尚杰
2025-05-15 15:05:44 +08:00
parent 95f2e1bad6
commit 276d4bfd51
3 changed files with 260 additions and 0 deletions

View File

@@ -43,6 +43,12 @@ func Deploy(cfg map[string]any, logger *public.Logger) error {
case "aliyun-oss":
logger.Debug("部署到阿里云OSS...")
return DeployOss(cfg)
case "safeline-site":
logger.Debug("部署雷池WAF网站...")
return DeploySafeLineWafSite(cfg, logger)
case "safeline-panel":
logger.Debug("部署雷池WAF面板...")
return DeploySafeLineWaf(cfg)
case "localhost":
logger.Debug("部署到本地...")
return DeployLocalhost(cfg)