Zuul: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
Line 35: Line 35:
| valign="top" |
| 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]
* [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]
* [https://levelup.gitconnected.com/spring-cloud-zuul-api-gateway-dffa5933d570 Spring Cloud with Zuul API Gateway]


|}
|}

Revision as of 22:53, 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