From 1737b9d2cff9a8cacca647495ec9f07b07cde18b Mon Sep 17 00:00:00 2001 From: Julio Capote Date: Wed, 4 Jan 2023 19:02:55 -0500 Subject: typo --- registry/registry.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'registry/registry.go') diff --git a/registry/registry.go b/registry/registry.go index 417bb9b..d2658e5 100644 --- a/registry/registry.go +++ b/registry/registry.go @@ -164,8 +164,8 @@ func (r *Registry) Inbox(name string, req *http.Request) error { } logger := r.log.With("type", "inbox") - if req.Host != handler.handlerCfg.Name { - logger.Warnf("%s != %s, configured domain should match incoming Host: header otherwise HTTP signature verification will fail. You'll need to enable 'ProxyPreserveHost' (for apache2) or proxy_set_header Host $host; (for nginx)", req.Host, handler.handlerCfg.Name) + if req.Host != r.cfg.Domain { + logger.Warnf("%s != %s, configured domain should match incoming Host: header otherwise HTTP signature verification will fail. You'll need to enable 'ProxyPreserveHost' (for apache2) or proxy_set_header Host $host; (for nginx)", req.Host, r.cfg.Domain) } verifier, err := httpsig.NewVerifier(req) -- cgit v1.2.3