Ryan Baxter
Ryan Baxter
@pway99 sure we are open to that idea
I think that using this customizer might give you the flexibility that you need https://github.com/spring-cloud/spring-cloud-openfeign/pull/289 Unfortunately it is only available in the 2020.0 milestones at the moment. Maybe you could...
@celdridge91190 not yet it will be in Hoxton.SR10
@realdammy it is labeled as an enhancement but as far as I know no one is working on it at the moment. If you want to submit a PR for...
That is not a valid PR# can you provide a link?
Why don’t you comment on that PR and ask?
What I am having to do is tell the proxy which routes I want authenticated and which routes I want anonymous and then do the same exact configuration in the...
Its late and it is a long day but I can't think of a good reason why right now. Not sure why I didn't think about that, kind of embarrassing....
@dsyer I made it a passthrough as you suggested (added /api/*\* to security.ignored) but it appears that when doing that it looks like the proxy is not setting the authenticated...
So I was certainly able to simplify the configuration on the proxy end ``` import javax.servlet.http.HttpServletRequest; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.EnableAutoConfiguration; import org.springframework.cloud.netflix.eureka.EnableEurekaClient; import org.springframework.cloud.netflix.zuul.EnableZuulProxy; import org.springframework.cloud.security.oauth2.sso.EnableOAuth2Sso; import org.springframework.cloud.security.oauth2.sso.OAuth2SsoConfigurerAdapter; import org.springframework.context.annotation.ComponentScan;...