Zuul: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
No edit summary
Line 20: Line 20:


==References==
==References==
{|
| valign="top" |
* [https://medium.com/@arjunac009/spring-boot-microservice-with-centralized-authentication-zuul-eureka-jwt-5719e05fde29 Spring Centralised Authentication using Zuul, Eureka & JWT]
* [https://medium.com/@arjunac009/spring-boot-microservice-with-centralized-authentication-zuul-eureka-jwt-5719e05fde29 Spring Centralised Authentication using Zuul, Eureka & JWT]
* [https://developer.okta.com/blog/2018/02/13/secure-spring-microservices-with-oauth Secure a Spring Micro-services Architecture with OAuth]
* [https://developer.okta.com/blog/2018/02/13/secure-spring-microservices-with-oauth Secure a Spring Micro-services Architecture with OAuth]
Line 30: Line 32:
* [https://github.com/Netflix/zuul/wiki Netflix Zuul Wiki]
* [https://github.com/Netflix/zuul/wiki Netflix Zuul Wiki]
* [https://github.com/Netflix/zuul/tree/master/zuul-sample Zuul Sample]
* [https://github.com/Netflix/zuul/tree/master/zuul-sample Zuul Sample]
| valign="top" |
* [https://cloud.spring.io/spring-cloud-security/2.1.x/multi/multi__configuring_authentication_downstream_of_a_zuul_proxy.html Configuring Authentication Downstream of a Zuul Proxy]
|}

Revision as of 22:44, 28 July 2020

spring:
  application:
    name: ZuulProxy
zuul:
  routes:
    api:
      path: /api/self/rest/**
      url: https://localhost:2013/ebis/api/self/rest
    static:
      path: /**
      url: https://localhost:2015/
  sensitive-headers: Cookie,Set-Cookie
server:
  port: 1983
eureka:
  client:
    register-with-eureka: false

References