diff options
-rw-r--r-- | registry/registry.go | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/registry/registry.go b/registry/registry.go index d2658e5..6f47f8a 100644 --- a/registry/registry.go +++ b/registry/registry.go @@ -164,8 +164,13 @@ func (r *Registry) Inbox(name string, req *http.Request) error { } logger := r.log.With("type", "inbox") - 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) + domainUrl, err := url.Parse(r.cfg.Domain) + if err != nil { + return err + } + + if req.Host != domainUrl.Host { + logger.Warnf("%s != %s, configured domain should match incoming Host: header otherwise things may not work right. 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) |