Zuul: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 14: | Line 14: | ||
server: | server: | ||
port: 1983 | port: 1983 | ||
eureka: | |||
client: | |||
register-with-eureka: false | |||
</source> | </source> | ||
Revision as of 22:38, 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
- Spring Centralised Authentication using Zuul, Eureka & JWT
- Secure a Spring Micro-services Architecture with OAuth
- Build a Micro-services Architecture with Spring Boot
- Spring Security using Zuul, OAuth2 & JWT
- Spring Boot Single Sign On with Zuul
- Zuul Server Configuration
- Zuul Core Features
- Zuul Auth Example
- Netflix Zuul Wiki
- Zuul Sample