修改相关域名

This commit is contained in:
刘祥超
2021-12-17 14:19:43 +08:00
parent 73d049b380
commit 4e22f4954e
3 changed files with 4 additions and 4 deletions

View File

@@ -124,7 +124,7 @@ var AllCheckpoints = []*HTTPFirewallCheckpointDefinition{
{
Name: "主机名",
Prefix: "host",
Description: "比如teaos.cn",
Description: "比如goedge.cn",
IsRequest: true,
},
{

View File

@@ -102,13 +102,13 @@ var AllRuleOperators = []*RuleOperatorDefinition{
{
Name: "正则匹配",
Code: HTTPFirewallRuleOperatorMatch,
Description: "使用正则表达式匹配,在头部使用(?i)表示不区分大小写,<a href=\"http://teaos.cn/doc/regexp/Regexp.md\" target=\"_blank\">正则表达式语法 &raquo;</a>",
Description: "使用正则表达式匹配,在头部使用(?i)表示不区分大小写,<a href=\"https://goedge.cn/docs/Appendix/Regexp/Index.md\" target=\"_blank\">正则表达式语法 &raquo;</a>",
CaseInsensitive: HTTPFirewallRuleCaseInsensitiveYes,
},
{
Name: "正则不匹配",
Code: HTTPFirewallRuleOperatorNotMatch,
Description: "使用正则表达式不匹配,在头部使用(?i)表示不区分大小写,<a href=\"http://teaos.cn/doc/regexp/Regexp.md\" target=\"_blank\">正则表达式语法 &raquo;</a>",
Description: "使用正则表达式不匹配,在头部使用(?i)表示不区分大小写,<a href=\"https://goedge.cn/docs/Appendix/Regexp/Index.md\" target=\"_blank\">正则表达式语法 &raquo;</a>",
CaseInsensitive: HTTPFirewallRuleCaseInsensitiveYes,
},
{

View File

@@ -34,7 +34,7 @@ func AllLocationPatternTypes() []maps.Map {
{
"name": "正则表达式匹配",
"type": HTTPLocationPatternTypeRegexp,
"description": "通过正则表达式来匹配路径,<a href=\"http://teaos.cn/doc/regexp/Regexp.md\" target=\"_blank\">正则表达式语法 &raquo;</a>",
"description": "通过正则表达式来匹配路径,<a href=\"https://goedge.cn/docs/Appendix/Regexp/Index.md\" target=\"_blank\">正则表达式语法 &raquo;</a>",
},
}
}