diff --git a/proxy/server.go b/proxy/server.go index 81bed5f4a..4249c8f3a 100644 --- a/proxy/server.go +++ b/proxy/server.go @@ -271,6 +271,9 @@ func (s *Server) ListenAndServe(ctx context.Context, addr string) (err error) { "/": testURL, }, }) + if s.acme != nil { + s.acme.AddDomain(domain.Domain(hostDomain), "test-account", "test-static-file") + } s.Logger.Info("Added static test mapping: %s/* -> local test file server (bypassing NetBird tunnel)", hostDomain) select {