mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-08 16:00:26 +08:00
系统安全设置中增加“仅从自定义报头中获取IP”选项
This commit is contained in:
@@ -37,6 +37,10 @@ func RemoteIP(action *actions.ActionObject) string {
|
|||||||
return ipValue
|
return ipValue
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if securityConfig.ClientIPHeaderOnly {
|
||||||
|
return ""
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -83,6 +83,7 @@ func (this *IndexAction) RunPost(params struct {
|
|||||||
AllowRememberLogin bool
|
AllowRememberLogin bool
|
||||||
|
|
||||||
ClientIPHeaderNames string
|
ClientIPHeaderNames string
|
||||||
|
ClientIPHeaderOnly bool
|
||||||
|
|
||||||
DenySearchEngines bool
|
DenySearchEngines bool
|
||||||
DenySpiders bool
|
DenySpiders bool
|
||||||
@@ -146,6 +147,7 @@ func (this *IndexAction) RunPost(params struct {
|
|||||||
|
|
||||||
// 客户端IP获取方式
|
// 客户端IP获取方式
|
||||||
config.ClientIPHeaderNames = params.ClientIPHeaderNames
|
config.ClientIPHeaderNames = params.ClientIPHeaderNames
|
||||||
|
config.ClientIPHeaderOnly = params.ClientIPHeaderOnly
|
||||||
|
|
||||||
// 禁止搜索引擎和爬虫
|
// 禁止搜索引擎和爬虫
|
||||||
config.DenySearchEngines = params.DenySearchEngines
|
config.DenySearchEngines = params.DenySearchEngines
|
||||||
|
|||||||
@@ -58,12 +58,19 @@
|
|||||||
</tr>
|
</tr>
|
||||||
<tbody v-show="moreOptionsVisible || showAll">
|
<tbody v-show="moreOptionsVisible || showAll">
|
||||||
<tr>
|
<tr>
|
||||||
<td>自定义客户端IP报头</td>
|
<td class="color-border">自定义客户端IP报头</td>
|
||||||
<td>
|
<td>
|
||||||
<input type="text" name="clientIPHeaderNames" v-model="config.clientIPHeaderNames"/>
|
<input type="text" name="clientIPHeaderNames" v-model="config.clientIPHeaderNames"/>
|
||||||
<p class="comment"><a id="client-header-names"></a>可以通过此报头获取客户端IP,类似于<code-label>X-Forwarded-For X-Real-IP True-Client-IP Client-IP</code-label> <a href=""><span class="small" @click.prevent="addDefaultClientIPHeaderNames('X-Forwarded-For X-Real-IP True-Client-IP Client-IP')">[填入]</span></a>,用于使用反向代理访问管理系统的情形;如果有多个报头可以使用空格隔开。</p>
|
<p class="comment"><a id="client-header-names"></a>可以通过此报头获取客户端IP,类似于<code-label>X-Forwarded-For X-Real-IP True-Client-IP Client-IP</code-label> <a href=""><span class="small" @click.prevent="addDefaultClientIPHeaderNames('X-Forwarded-For X-Real-IP True-Client-IP Client-IP')">[填入]</span></a>,用于使用反向代理访问管理系统的情形;如果有多个报头可以使用空格隔开。</p>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr v-show="config.clientIPHeaderNames.length > 0">
|
||||||
|
<td class="color-border">仅从自定义报头中获取IP</td>
|
||||||
|
<td>
|
||||||
|
<checkbox name="clientIPHeaderOnly" v-model="config.clientIPHeaderOnly"></checkbox>
|
||||||
|
<p class="comment">选中后,表示仅从自定义报头中获取IP,意味着客户端必须使用反向代理访问当前系统,不允许直接访问。</p>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>禁止搜索引擎</td>
|
<td>禁止搜索引擎</td>
|
||||||
<td>
|
<td>
|
||||||
|
|||||||
Reference in New Issue
Block a user