From b4bea60d3b0d387b7eb8e5ed6f0fd02f1ecb89d4 Mon Sep 17 00:00:00 2001 From: GoEdgeLab Date: Sun, 5 May 2024 11:23:57 +0800 Subject: [PATCH] =?UTF-8?q?=E9=83=A8=E5=88=86=E2=80=9C=E6=9C=8D=E5=8A=A1?= =?UTF-8?q?=E2=80=9D=E6=96=87=E5=AD=97=E6=94=B9=E4=B8=BA=E2=80=9C=E7=BD=91?= =?UTF-8?q?=E7=AB=99=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/public/js/components/maps/traffic-map-box.js | 2 +- web/public/js/components/server/http-access-log-box.js | 2 +- web/public/js/components/server/http-firewall-actions-box.js | 2 +- .../js/components/server/http-request-limit-config-box.js | 4 ++-- web/public/js/components/server/ssl-certs-box.js | 2 +- web/public/js/components/server/ssl-config-box.js | 4 ++-- web/views/@default/servers/groups/group/@menu.html | 2 +- web/views/@default/servers/iplists/createPopup.html | 2 +- web/views/@default/servers/metrics/stats.html | 2 +- web/views/@default/users/update.html | 2 +- 10 files changed, 12 insertions(+), 12 deletions(-) diff --git a/web/public/js/components/maps/traffic-map-box.js b/web/public/js/components/maps/traffic-map-box.js index 460ab618..a95826cc 100644 --- a/web/public/js/components/maps/traffic-map-box.js +++ b/web/public/js/components/maps/traffic-map-box.js @@ -242,7 +242,7 @@ Vue.component("traffic-map-box-table", { - + diff --git a/web/public/js/components/server/http-access-log-box.js b/web/public/js/components/server/http-access-log-box.js index dc900696..a8dd4620 100644 --- a/web/public/js/components/server/http-access-log-box.js +++ b/web/public/js/components/server/http-access-log-box.js @@ -80,7 +80,7 @@ Vue.component("http-access-log-box", {
[{{accessLog.node.name}}节点] - + [网站] [网站] diff --git a/web/public/js/components/server/http-firewall-actions-box.js b/web/public/js/components/server/http-firewall-actions-box.js index ac81ef1e..c4cc1e3a 100644 --- a/web/public/js/components/server/http-firewall-actions-box.js +++ b/web/public/js/components/server/http-firewall-actions-box.js @@ -777,7 +777,7 @@ Vue.component("http-firewall-actions-box", { -

只封禁用户对当前网站的访问,其他服务不受影响。

+

只封禁用户对当前网站的访问,其他网站不受影响。

封禁用户对所有网站的访问。

diff --git a/web/public/js/components/server/http-request-limit-config-box.js b/web/public/js/components/server/http-request-limit-config-box.js index a9906696..a2d4aac7 100644 --- a/web/public/js/components/server/http-request-limit-config-box.js +++ b/web/public/js/components/server/http-request-limit-config-box.js @@ -73,14 +73,14 @@ Vue.component("http-request-limit-config-box", {
diff --git a/web/public/js/components/server/ssl-certs-box.js b/web/public/js/components/server/ssl-certs-box.js index 8c1993d8..04846c01 100644 --- a/web/public/js/components/server/ssl-certs-box.js +++ b/web/public/js/components/server/ssl-certs-box.js @@ -37,7 +37,7 @@ Vue.component("ssl-certs-box", { // 删除证书 removeCert: function (index) { let that = this - teaweb.confirm("确定删除此证书吗?证书数据仍然保留,只是当前服务不再使用此证书。", function () { + teaweb.confirm("确定删除此证书吗?证书数据仍然保留,只是当前网站不再使用此证书。", function () { that.certs.$remove(index) }) }, diff --git a/web/public/js/components/server/ssl-config-box.js b/web/public/js/components/server/ssl-config-box.js index ea77e075..e1cf8254 100644 --- a/web/public/js/components/server/ssl-config-box.js +++ b/web/public/js/components/server/ssl-config-box.js @@ -98,7 +98,7 @@ Vue.component("ssl-config-box", { // 删除证书 removeCert: function (index) { let that = this - teaweb.confirm("确定删除此证书吗?证书数据仍然保留,只是当前服务不再使用此证书。", function () { + teaweb.confirm("确定删除此证书吗?证书数据仍然保留,只是当前网站不再使用此证书。", function () { that.policy.certRefs.$remove(index) that.policy.certs.$remove(index) }) @@ -385,7 +385,7 @@ Vue.component("ssl-config-box", { // 删除客户端CA证书 removeClientCACert: function (index) { let that = this - teaweb.confirm("确定删除此证书吗?证书数据仍然保留,只是当前服务不再使用此证书。", function () { + teaweb.confirm("确定删除此证书吗?证书数据仍然保留,只是当前网站不再使用此证书。", function () { that.policy.clientCARefs.$remove(index) that.policy.clientCACerts.$remove(index) }) diff --git a/web/views/@default/servers/groups/group/@menu.html b/web/views/@default/servers/groups/group/@menu.html index 00ca2073..2e94758f 100644 --- a/web/views/@default/servers/groups/group/@menu.html +++ b/web/views/@default/servers/groups/group/@menu.html @@ -2,6 +2,6 @@ 分组列表|"{{group.name}}"详情 - 全局设置   + 全局设置  修改 \ No newline at end of file diff --git a/web/views/@default/servers/iplists/createPopup.html b/web/views/@default/servers/iplists/createPopup.html index b8cf6121..cb0c116f 100644 --- a/web/views/@default/servers/iplists/createPopup.html +++ b/web/views/@default/servers/iplists/createPopup.html @@ -24,7 +24,7 @@ diff --git a/web/views/@default/servers/metrics/stats.html b/web/views/@default/servers/metrics/stats.html index b1f57e54..0c6afad0 100644 --- a/web/views/@default/servers/metrics/stats.html +++ b/web/views/@default/servers/metrics/stats.html @@ -12,7 +12,7 @@ - + diff --git a/web/views/@default/users/update.html b/web/views/@default/users/update.html index 0161a64f..61f4b8a8 100644 --- a/web/views/@default/users/update.html +++ b/web/views/@default/users/update.html @@ -42,7 +42,7 @@
国家/地区排行  国家/地区排行 
最大并发连接数 -

当前服务最大并发连接数,超出此限制则响应用户429代码。为0表示不限制。

+

当前网站最大并发连接数,超出此限制则响应用户429代码。为0表示不限制。

单IP最大并发连接数 -

单IP最大连接数,统计单个IP总连接数时不区分服务,超出此限制则响应用户429代码。为0表示不限制。当前设置的并发连接数过低,可能会影响正常用户访问,建议不小于3。

+

单IP最大连接数,统计单个IP总连接数时不区分网站,超出此限制则响应用户429代码。为0表示不限制。当前设置的并发连接数过低,可能会影响正常用户访问,建议不小于3。

全局有效 -

选中后,所有服务都自动使用此名单,不需要再次绑定;否则只有在WAF策略中绑定此名单后才会生效。

+

选中后,所有网站都自动使用此名单,不需要再次绑定;否则只有在WAF策略中绑定此名单后才会生效。

时间 集群 节点服务网站
关联集群 * -

用户发布的网站会自动部署到此集群,修改此选项会同步修改当前用户下的所有服务,但不影响和套餐绑定的服务。

+

用户发布的网站会自动部署到此集群,修改此选项会同步修改当前用户下的所有网站,但不影响和套餐绑定的服务。