优化证书数量很多时的页面加载速度

This commit is contained in:
GoEdgeLab
2022-12-31 17:12:55 +08:00
parent 2da242cac0
commit 68197d537c
6 changed files with 664 additions and 635 deletions

View File

@@ -24,12 +24,7 @@ func AllServerTypes() []maps.Map {
"description": "可以通过CDN边缘节点分发源站内容。",
},
{
"name": "HTTP Web服务",
"code": ServerTypeHTTPWeb,
"description": "普通的HTTP Web服务可以用来访问边缘节点上的静态文件内容。",
},
{
"name": "TCP反向代理",
"name": "TCP负载均衡",
"code": ServerTypeTCPProxy,
"description": "通过反向代理访问源站TCP服务",
},
@@ -38,10 +33,15 @@ func AllServerTypes() []maps.Map {
"code": ServerTypeUnixProxy,
},**/
{
"name": "UDP反向代理",
"name": "UDP负载均衡",
"code": ServerTypeUDPProxy,
"description": "通过反向代理访问源站UDP服务",
},
{
"name": "HTTP Web服务",
"code": ServerTypeHTTPWeb,
"description": "普通的HTTP Web服务可以用来访问边缘节点上的静态文件内容。",
},
}
}