1 Answer
- Newest
- Most votes
- Most comments
1
Have you traced the requests from Chrome to the ALB, too many redirects means that in response to a request, the browser responded with a 3xx response code, usually containing a "Location" header which indicates the servers idea of where the resource should be requested from. The browser will then follow this redirect based on the contents of the "Location" header.
If following this response results in another 3xx response with the same location header, a redirect loop occurs, and after a few of those the browser spits out the error you are getting.
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#redirection_messages
Tracing the behavior should be a start to isolate the problem.
Relevant content
- asked 9 months ago
- asked 2 years ago
- asked 2 years ago

I cannot re-enable it to double check it, because it breaks the site for all chrome users, and it's a production architecture. I don't currently have the ability to spin up a duplicate system to do this testing on.
However, I can confirm, the response is 302, with the URL for the redirect being the same URL it's redirecting from. Trying it with the Network panel of the Web Inspector open, I can see it just shows the same URL over and over until the browser opts not to continue processing them.
My theory is that the ALB cookie is malformed somehow in Chrome, and thus it's not being handled correctly.