I\'ve been trying to get to the bottom of a strange redirection issue for the past 2 days without success.
Based on the spring-cloud example projects, I\'ve configured E
If you are using tomcat as embeded server in your backend app, you could use this settings (application.properties, yml, etc):
server.tomcat.remote_ip_header=x-forwarded-for server.tomcat.protocol_header=x-forwarded-proto
Or more generic way:
server.use-forward-headers=true