diff --git a/internal/nodes/http_request.go b/internal/nodes/http_request.go index 6331d37..de7ba15 100644 --- a/internal/nodes/http_request.go +++ b/internal/nodes/http_request.go @@ -506,6 +506,8 @@ func (this *HTTPRequest) configureWeb(web *serverconfigs.HTTPWebConfig, isTop bo } // pages + this.web.EnableGlobalPages = web.EnableGlobalPages + if len(web.Pages) > 0 { this.web.Pages = web.Pages } diff --git a/internal/nodes/http_request_page.go b/internal/nodes/http_request_page.go index 8579fb1..8f19ccd 100644 --- a/internal/nodes/http_request_page.go +++ b/internal/nodes/http_request_page.go @@ -17,7 +17,7 @@ const defaultPageContentType = "text/html; charset=utf-8" func (this *HTTPRequest) doPage(status int) (shouldStop bool) { if len(this.web.Pages) == 0 { // 集群自定义页面 - if this.nodeConfig != nil && this.ReqServer != nil { + if this.nodeConfig != nil && this.ReqServer != nil && this.web.EnableGlobalPages { var httpPagesPolicy = this.nodeConfig.FindHTTPPagesPolicyWithClusterId(this.ReqServer.ClusterId) if httpPagesPolicy != nil && httpPagesPolicy.IsOn && len(httpPagesPolicy.Pages) > 0 { return this.doPageLookup(httpPagesPolicy.Pages, status) @@ -34,7 +34,7 @@ func (this *HTTPRequest) doPage(status int) (shouldStop bool) { } // 集群自定义页面 - if this.nodeConfig != nil && this.ReqServer != nil { + if this.nodeConfig != nil && this.ReqServer != nil && this.web.EnableGlobalPages { var httpPagesPolicy = this.nodeConfig.FindHTTPPagesPolicyWithClusterId(this.ReqServer.ClusterId) if httpPagesPolicy != nil && httpPagesPolicy.IsOn && len(httpPagesPolicy.Pages) > 0 { return this.doPageLookup(httpPagesPolicy.Pages, status)