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.
2 parents 94bb89e + 9c3d303 commit 47faca8Copy full SHA for 47faca8
lib/Controller/ExAppProxyController.php
@@ -321,6 +321,8 @@ private function passesExAppProxyRouteAccessLevelCheck(int $accessLevel): bool {
321
322
private function buildHeadersWithExclude(array $route, array $headers): array {
323
$headersToExclude = json_decode($route['headers_to_exclude'], true);
324
+ $headersToExclude = array_map('strtolower', $headersToExclude);
325
+
326
if (!in_array('x-origin-ip', $headersToExclude)) {
327
$headersToExclude[] = 'x-origin-ip';
328
}
0 commit comments