路由规则可以单独设置UAM(仅企业版可用)

This commit is contained in:
刘祥超
2022-05-04 20:32:25 +08:00
parent e77de69a15
commit 04da107c94

View File

@@ -265,10 +265,19 @@ func (this *HTTPRequest) doBegin() {
} }
// UAM // UAM
if !isHealthCheck && this.ReqServer.UAM != nil && this.ReqServer.UAM.IsOn { if !isHealthCheck {
if this.doUAM() { if this.web.UAM != nil {
this.doEnd() if this.web.UAM.IsOn {
return if this.doUAM() {
this.doEnd()
return
}
}
} else if this.ReqServer.UAM != nil && this.ReqServer.UAM.IsOn {
if this.doUAM() {
this.doEnd()
return
}
} }
} }
@@ -521,6 +530,11 @@ func (this *HTTPRequest) configureWeb(web *serverconfigs.HTTPWebConfig, isTop bo
} }
} }
// UAM
if web.UAM != nil && (web.UAM.IsPrior || isTop) {
this.web.UAM = web.UAM
}
// 重写规则 // 重写规则
if len(web.RewriteRefs) > 0 { if len(web.RewriteRefs) > 0 {
for index, ref := range web.RewriteRefs { for index, ref := range web.RewriteRefs {