application.yml 729 B

1234567891011121314151617181920212223242526272829303132
  1. security:
  2. oauth2:
  3. client:
  4. accessTokenUri: ${security.server.url:http://localhost:8082}/oauth/access_token
  5. userAuthorizationUri: ${security.server.url:http://localhost:8082}/oauth/authorize
  6. clientId: crss
  7. clientSecret: crsssecret
  8. authorized-grant-types: authorization_code,refresh_token,password
  9. scope: openid
  10. access-token-validity-seconds: 3600
  11. resource:
  12. userInfoUri: ${security.server.url:http://localhost:8082}/user
  13. logging:
  14. pattern:
  15. level: 'username:%X{username:-system} %5p'
  16. ---
  17. spring:
  18. profiles: docker
  19. security.server.url: http://app:8080
  20. ---
  21. spring:
  22. profiles: staging
  23. profiles.include: docker
  24. ---
  25. spring:
  26. profiles: uat
  27. profiles.include: docker