Sascha Vogel
Sascha Vogel
What issues are you facing? The easiest approach would probably be: - Create a global filter (see https://cloud.spring.io/spring-cloud-gateway/multi/multi__global_filters.html#_global_filters) - Create a `ReactiveJwtDecoder` (e.g. `NimbusReactiveJwtDecoder`) - Parse authorization header and validate...
Hey @ryanjbaxter thank you for your feedback. I am now providing a custom `ReactiveDiscoveryClient`. `DiscoveryClient` and a customized version of `ServicePortSecureResolver`. That seems to do the trick. I basically copied...
Yeah that would be possible, although the constructor is package private... We decided to go for the default behaviour (adding `secured: true` to all services that require https) but since...