fix: Use lower-case proxy headers naming (#21235)

This commit is contained in:
Aleksander Grygier
2026-03-31 17:47:46 +02:00
committed by GitHub
parent 6307ec07d3
commit 0fcb3760b2
4 changed files with 6 additions and 6 deletions
@@ -28,7 +28,7 @@ export function buildProxiedHeaders(headers: Record<string, string>): Record<str
const proxiedHeaders: Record<string, string> = {};
for (const [key, value] of Object.entries(headers)) {
proxiedHeaders[`X-Proxy-Header-${key}`] = value;
proxiedHeaders[`x-proxy-header-${key}`] = value;
}
return proxiedHeaders;