From c25924954aaf7791e0093c0d9dd3c406c7741906 Mon Sep 17 00:00:00 2001 From: Igor Wiedler Date: Tue, 15 Dec 2020 13:58:10 +0100 Subject: [PATCH] Fix redirect loop with PROXYv2 --- app.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.go b/app.go index c411470b9..ed06893e4 100644 --- a/app.go +++ b/app.go @@ -373,7 +373,7 @@ func (a *theApp) Run() { // Listen for HTTPS PROXYv2 requests for _, fd := range a.ListenHTTPSProxyv2 { - a.ListenHTTPSProxyv2FD(&wg, fd, proxyHandler, limiter) + a.ListenHTTPSProxyv2FD(&wg, fd, httpHandler, limiter) } // Serve metrics for Prometheus -- GitLab