Zuul: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 1: | Line 1: | ||
<source lang="properties"> | |||
spring: | |||
application: | |||
name: ZuulProxy | |||
zuul: | |||
routes: | |||
api: | |||
path: /api/self/rest/** | |||
url: http://localhost:2013/ebis/api/self/rest | |||
static: | |||
path: /** | |||
url: http://localhost:2015/ | |||
sensitive-headers: Cookie,Set-Cookie | |||
server: | |||
port: 1983 | |||
</source> | |||
==References== | ==References== | ||
* [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] |
Revision as of 22:07, 28 July 2020
spring:
application:
name: ZuulProxy
zuul:
routes:
api:
path: /api/self/rest/**
url: http://localhost:2013/ebis/api/self/rest
static:
path: /**
url: http://localhost:2015/
sensitive-headers: Cookie,Set-Cookie
server:
port: 1983
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