feat: use destination path as prefix when rewritting url
Cadoles/bouncer/pipeline/head This commit looks good
Details
Cadoles/bouncer/pipeline/head This commit looks good
Details
This commit is contained in:
parent
19fda6aa64
commit
1009eb19aa
|
@ -70,6 +70,7 @@ MAIN:
|
||||||
|
|
||||||
r.URL.Host = toURL.Host
|
r.URL.Host = toURL.Host
|
||||||
r.URL.Scheme = toURL.Scheme
|
r.URL.Scheme = toURL.Scheme
|
||||||
|
r.URL.Path = toURL.JoinPath(r.URL.Path).Path
|
||||||
|
|
||||||
ctx = logger.With(ctx,
|
ctx = logger.With(ctx,
|
||||||
logger.F("proxy", match.Name),
|
logger.F("proxy", match.Name),
|
||||||
|
@ -77,6 +78,11 @@ MAIN:
|
||||||
logger.F("remoteAddr", r.RemoteAddr),
|
logger.F("remoteAddr", r.RemoteAddr),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
logger.Debug(
|
||||||
|
ctx, "rewritten url",
|
||||||
|
logger.F("rewrittenURL", r.URL.String()),
|
||||||
|
)
|
||||||
|
|
||||||
metricProxyRequestsTotal.With(prometheus.Labels{metricLabelProxy: string(match.Name)}).Add(1)
|
metricProxyRequestsTotal.With(prometheus.Labels{metricLabelProxy: string(match.Name)}).Add(1)
|
||||||
|
|
||||||
ctx = withProxy(ctx, match)
|
ctx = withProxy(ctx, match)
|
||||||
|
|
Loading…
Reference in New Issue