We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 016a954 commit b3de69eCopy full SHA for b3de69e
1 file changed
internal/controller/proxy_controller.go
@@ -90,6 +90,10 @@ func (controller *ProxyController) proxyHandler(c *gin.Context) {
90
tlog.App.Debug().Msg("Request identified as (most likely) coming from a non-browser client")
91
}
92
93
+ // We are not marking the URI as a required header because it may be missing
94
+ // and we only use it for the auth enabled check which will simply not match
95
+ // if the header is missing. For deployments like Kubernetes, we use the
96
+ // x-original-uri header instead.
97
uri, ok := controller.getHeader(c, "x-forwarded-uri")
98
99
if !ok {
0 commit comments