server: 404 if host not recognised
Alan Pearce alan@alanpearce.eu
Wed, 04 Dec 2024 19:59:33 +0100
1 files changed, 3 insertions(+), 1 deletions(-)
jump to
M internal/server/server.go → internal/server/server.go
@@ -194,10 +194,12 @@ if slices.Contains(config.Domains, r.Host) { path, _ := website.CanonicalisePath(r.URL.Path) newURL := config.BaseURL.JoinPath(path) http.Redirect(w, r, newURL.String(), http.StatusMovedPermanently) - } else { + } else if re.MatchString(r.Host) { url := config.BaseURL url.Host = re.ReplaceAllString(r.Host, replace) http.Redirect(w, r, url.String(), http.StatusTemporaryRedirect) + } else { + http.NotFound(w, r) } }) } else {