Skip to content

Instantly share code, notes, and snippets.

@bryantp
Created June 28, 2016 16:12
Embed
What would you like to do?
debug: true
spring:
aop:
proxy-target-class: true
security:
user:
password: password
oauth2:
client:
accessTokenUri: http://localhost:8080/uaa/oauth/token
userAuthorizationUri: http://localhost:8080/uaa/oauth/authorize
clientId: app
clientSecret: app-secret
resource:
userInfoUri: http://localhost:8080/uaa/userinfo
zuul:
routes:
resource:
path: /resource/**
url: http://localhost:9000
user:
path: /user/**
url: http://localhost:8080/uaa/userinfo
server:
port: 8081
logging:
level:
org.springframework.security: DEBUG
org.springframework.web: DEBUG
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment