fix missing TLS certificates for secondary hostnames
1 file changed, 5 insertions(+), 3 deletions(-)
changed files
M internal/server/app.go → internal/server/app.go
@@ -5,7 +5,9 @@ "net/http" ) type App struct { - Domain string - Handler http.Handler - Shutdown func() + Domain string + Domains []string + WildcardDomain string + Handler http.Handler + Shutdown func() }