集群设置--网站设置中增加“自动gzip回源”选项

This commit is contained in:
GoEdgeLab
2024-04-18 16:15:40 +08:00
parent 752eb1f9ba
commit 27f522fae4
3 changed files with 16 additions and 3 deletions

View File

@@ -109,6 +109,7 @@ func (this *IndexAction) RunPost(params struct {
HttpAllNodeIPPageHTML string
HttpAllNodeIPShowPage bool
HttpAllEnableServerAddrVariable bool
HttpAllRequestOriginsWithEncodings bool
HttpAllDomainAuditingIsOn bool
HttpAllDomainAuditingPrompt string
@@ -217,6 +218,7 @@ func (this *IndexAction) RunPost(params struct {
config.HTTPAll.ForceLnRequest = params.HttpAllForceLnRequest
config.HTTPAll.LnRequestSchedulingMethod = params.HttpAllLnRequestSchedulingMethod
config.HTTPAll.EnableServerAddrVariable = params.HttpAllEnableServerAddrVariable
config.HTTPAll.RequestOriginsWithEncodings = params.HttpAllRequestOriginsWithEncodings
// 访问日志
config.HTTPAccessLog.IsOn = params.HttpAccessLogIsOn

View File

@@ -4,7 +4,7 @@
<div class="right-box with-menu">
<second-menu>
<a v-for="item in titleMenus" :class="{active: item.id == currentItem}" :href="'#' + item.id" class="item" @click.prevent="selectItem(item)">{{item.name}}</a>
<a v-for="item in titleMenus" :class="{active: item.id == currentItem}" :href="'#' + item.id" class="item" @click="selectItem(item)">{{item.name}}</a>
</second-menu>
<form class="ui form" data-tea-action="$" data-tea-success="success" id="global-config-form">
@@ -288,7 +288,14 @@
<td>支持${serverAddr}变量</td>
<td>
<checkbox name="httpAllEnableServerAddrVariable" v-model="config.httpAll.enableServerAddrVariable"></checkbox>
<p class="comment">支持在自定义页面中使用<code-label>${serverAddr}</code-label>变量,表示访客当前正在访问的服务器地址。</p>
<p class="comment">选中后,表示支持在自定义页面中使用<code-label>${serverAddr}</code-label>变量,用来表示访客当前正在访问的服务器地址。</p>
</td>
</tr>
<tr>
<td>自动gzip回源</td>
<td>
<checkbox name="httpAllRequestOriginsWithEncodings" v-model="config.httpAll.requestOriginsWithEncodings"></checkbox>
<p class="comment">选中后,表示自动使用<code-label>Accept-Encoding: gzip, ...</code-label>回源,可以用来节约源站流量。</p>
</td>
</tr>
</table>

View File

@@ -13,9 +13,13 @@ Tea.context(function () {
if (textContent == null || textContent.length == 0) {
textContent = elements[i].innerText
}
let itemId = elements[i].getAttribute("id")
if (window.location.hash == "#" + itemId) {
this.currentItem = itemId
}
this.titleMenus.push({
name: textContent,
id: elements[i].getAttribute("id")
id: itemId
})
}
})