crss-sched-devoracle.yml 920 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. spring:
  2. rabbitmq:
  3. username: guest
  4. password: guest
  5. host: localhost
  6. ports:
  7. - "5672:5672"
  8. - "15672:15672"
  9. server:
  10. port: 8085
  11. undertow:
  12. accesslog:
  13. dir: target
  14. enabled: true
  15. pattern: combined
  16. compression:
  17. enabled: true
  18. min-response-size: 1
  19. eureka:
  20. client:
  21. serviceUrl:
  22. defaultZone: http://localhost:8761/eureka/
  23. security:
  24. oauth2:
  25. client:
  26. accessTokenUri: http://localhost:8082/oauth/access_token
  27. userAuthorizationUri: http://localhost:8082/oauth/authorize
  28. clientId: crss
  29. clientSecret: crsssecret
  30. authorized-grant-types: authorization_code,refresh_token,password
  31. scope: openid
  32. access-token-validity-seconds: 3600
  33. resource:
  34. userInfoUri: http://localhost:8082/user
  35. logging:
  36. level:
  37. com.pemc: DEBUG
  38. com.netflix: WARN
  39. org.springframework.cloud: WARN
  40. org.hibernate.SQL: DEBUG