From e8156ecbb6cc743a19567c607fe5ec9928a2fe61 Mon Sep 17 00:00:00 2001 From: pascal Date: Wed, 4 Mar 2026 17:30:21 +0100 Subject: [PATCH] add cert --- proxy/server.go | 3 +++ 1 file changed, 3 insertions(+) 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 {