diff --git a/server/server.go b/server/server.go index 94ff8871caa23..1ede5e3f7a035 100644 --- a/server/server.go +++ b/server/server.go @@ -243,6 +243,7 @@ func (a *ArgoCDServer) Run(ctx context.Context, port int) { tlsConfig := tls.Config{ Certificates: []tls.Certificate{*a.settings.Certificate}, } + a.TLSConfigCustomizer(&tlsConfig) tlsl = tls.NewListener(tlsl, &tlsConfig) // Now, we build another mux recursively to match HTTPS and gRPC.