Spring Oauth2 Authentication AWS behind Zuul
问题 I have a problem/question. I have a "typical" spring cloud netflix environment at aws running. Now to my problem: Given (working authentication): Request (https: //DOMAIN.net/) -> AWS Load balancer (adds headers X-Forwarded-For and X-Forwarded-Proto) -> Zuul The route / for zuul is secured this means spring security correctly redirects the user to https: //DOMAIN/login and this triggers the correct redirect to our auth server with the correct redirect URI. No problem here. Given (not working