diff --git a/web/public/js/components.js b/web/public/js/components.js
index d0529b37..c31c31a6 100755
--- a/web/public/js/components.js
+++ b/web/public/js/components.js
@@ -2968,6 +2968,7 @@ Vue.component("http-cache-config-box", {
isPrior: false,
isOn: false,
addStatusHeader: true,
+ addAgeHeader: false,
cacheRefs: [],
purgeIsOn: false,
purgeKey: ""
@@ -3032,10 +3033,17 @@ Vue.component("http-cache-config-box", {
- | 自动添加X-Cache Header |
+ 添加X-Cache Header |
-
+
+ |
+
+
+ | 添加Age Header |
+
+
+
|
@@ -6118,7 +6126,8 @@ Vue.component("http-access-log-config-box", {
status4: true,
status5: true,
- firewallOnly: false
+ firewallOnly: false,
+ enableClientClosed: false
}
if (this.vAccessLogConfig != null) {
accessLog = this.vAccessLogConfig
@@ -6196,6 +6205,16 @@ Vue.component("http-access-log-config-box", {
+
+ | 记录客户端中断日志 |
+
+
+
+
+
+
+ |
+
diff --git a/web/public/js/components/server/http-cache-config-box.js b/web/public/js/components/server/http-cache-config-box.js
index 8a2575d1..a35e947c 100644
--- a/web/public/js/components/server/http-cache-config-box.js
+++ b/web/public/js/components/server/http-cache-config-box.js
@@ -7,6 +7,7 @@ Vue.component("http-cache-config-box", {
isPrior: false,
isOn: false,
addStatusHeader: true,
+ addAgeHeader: false,
cacheRefs: [],
purgeIsOn: false,
purgeKey: ""
@@ -71,10 +72,17 @@ Vue.component("http-cache-config-box", {
- | 自动添加X-Cache Header |
+ 添加X-Cache Header |
-
+
+ |
+
+
+ | 添加Age Header |
+
+
+
|