changed X-Forwarded-Path-Prefix to X-Forwarded-Prefix

This commit is contained in:
hyung-hwan 2024-12-19 00:05:24 +09:00
parent b147795ae0
commit 02e3e4561a

View File

@ -134,13 +134,13 @@ func mutate_proxy_req_headers(req *http.Request, newreq *http.Request, path_pref
newhdr.Set("X-Forwarded-Path", req.URL.Path) newhdr.Set("X-Forwarded-Path", req.URL.Path)
} }
v, ok = newhdr["X-Forwarded-Path-Prefix"] v, ok = newhdr["X-Forwarded-Prefix"]
if !ok { if !ok {
newhdr.Set("X-Forwarded-Path-Prefix", path_prefix) newhdr.Set("X-Forwarded-Prefix", path_prefix)
} else { } else {
// TODO: how to multiple existing items... // TODO: how to multiple existing items...
// there isn't supposed to be multiple items... // there isn't supposed to be multiple items...
newhdr.Set("X-Forwarded-Path-Prefix", v[0] + path_prefix) newhdr.Set("X-Forwarded-Prefix", v[0] + path_prefix)
} }
} }
} }