From 145a56dc517cfd5273ae381fbefcb54714eb7121 Mon Sep 17 00:00:00 2001 From: GoEdgeLab Date: Thu, 14 Apr 2022 15:59:21 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B0=86=E2=80=9CHTTP=E5=8F=8D=E5=90=91?= =?UTF-8?q?=E4=BB=A3=E7=90=86=E2=80=9D=E6=94=B9=E4=B8=BA=E2=80=9CCDN?= =?UTF-8?q?=E5=8A=A0=E9=80=9F=E2=80=9D/=E8=B0=83=E6=95=B4=E9=83=A8?= =?UTF-8?q?=E5=88=86=E6=96=87=E5=AD=97=E6=8F=8F=E8=BF=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkg/serverconfigs/server_types.go | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/pkg/serverconfigs/server_types.go b/pkg/serverconfigs/server_types.go index 51ca305..73fdd11 100644 --- a/pkg/serverconfigs/server_types.go +++ b/pkg/serverconfigs/server_types.go @@ -19,27 +19,28 @@ const ( func AllServerTypes() []maps.Map { return []maps.Map{ { - "name": "HTTP反向代理", + "name": "CDN加速", "code": ServerTypeHTTPProxy, - "description": "可以通过反向代理访问真实源站。", + "description": "可以通过CDN边缘节点分发源站内容。", }, { "name": "HTTP Web服务", "code": ServerTypeHTTPWeb, - "description": "普通的HTTP Web服务,可以用来访问静态文件内容。", + "description": "普通的HTTP Web服务,可以用来访问边缘节点上的静态文件内容。", }, { "name": "TCP反向代理", "code": ServerTypeTCPProxy, - "description": "通过反向代理访问真实的TCP服务", + "description": "通过反向代理访问源站TCP服务", }, /**{ "name": "UNIX协议反向代理", "code": ServerTypeUnixProxy, },**/ { - "name": "UDP反向代理", - "code": ServerTypeUDPProxy, + "name": "UDP反向代理", + "code": ServerTypeUDPProxy, + "description": "通过反向代理访问源站UDP服务", }, } }