(1)ANS IP配置去掉ip range的选项
(2)SSL配置导入提交
This commit is contained in:
@@ -3361,6 +3361,9 @@ public class BaseController {
|
||||
if (regionDict.getFunctionId().equals(61)) {
|
||||
bgpCfgService.saveBgpAsCfg(stringCfgs);
|
||||
}
|
||||
if (regionDict.getFunctionId().intValue() == 34) {
|
||||
websiteCfgService.saveSslCfg(stringCfgs);
|
||||
}
|
||||
} else if (regionDict.getRegionType().equals(3)) {
|
||||
for (ComplexkeywordCfg cfg : complexkeywordCfgs) {
|
||||
cfg.setAction(serviceDict.getAction());
|
||||
|
||||
@@ -643,6 +643,13 @@ public class WebsiteCfgService extends CrudService<WebsiteCfgDao,CfgIndexInfo> {
|
||||
|
||||
return httpUrlCompile;
|
||||
}
|
||||
public void saveSslCfg(List<BaseStringCfg<?>> cfgs){
|
||||
for(BaseStringCfg cfg:cfgs){
|
||||
if(StringUtils.isNotBlank(cfg.getCfgKeywords())){
|
||||
websiteCfgDao.saveSslKeywordCfg(cfg);
|
||||
}
|
||||
}
|
||||
}
|
||||
public void saveSslCfg(CfgIndexInfo entity){
|
||||
//设置区域运营商信息
|
||||
setAreaEffectiveIds(entity);
|
||||
|
||||
Reference in New Issue
Block a user