More debugging
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
PapaTutuWawa 2024-01-06 21:04:27 +01:00
parent 412e5d2fac
commit 996aa10866
2 changed files with 2 additions and 2 deletions

View File

@ -68,7 +68,7 @@ func Handler(pagesDomain, giteaUrl, defaultCsp string, giteaClient *repo.GiteaCl
if strings.HasSuffix(cname, pagesDomain) { if strings.HasSuffix(cname, pagesDomain) {
log.Debugf("%s is alias of %s and can be handled after a CNAME query", req.Host, cname) log.Debugf("%s is alias of %s and can be handled after a CNAME query", req.Host, cname)
handleSubdomain(cname, cname, req.URL.Path, giteaUrl, defaultCsp, giteaClient, w) handleSubdomain(req.Host, cname, req.URL.Path, giteaUrl, defaultCsp, giteaClient, w)
return return
} }

View File

@ -86,7 +86,7 @@ func lookupRepositoryAndCache(username, reponame, branchName, host, domain, path
log.Debugf("CNAME Content: %s", cnameContent) log.Debugf("CNAME Content: %s", cnameContent)
if cnameContent != cname { if cnameContent != cname {
log.Warnf("CNAME mismatch: Got '%s', expected '%s'", cname, cnameContent) log.Warnf("CNAME mismatch: Repo '%s', CNAME '%s'", cnameContent, cname)
return nil, errors.New("CNAME mismatch") return nil, errors.New("CNAME mismatch")
} }
} }