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 b36b8f1 + b7dcdd0 commit 404c157Copy full SHA for 404c157
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