crss-reg.yml 997 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. spring:
  2. jpa:
  3. properties:
  4. jadira.usertype.autoRegisterUserTypes: true
  5. http:
  6. multipart:
  7. maxFileSize: "25Mb"
  8. maxRequestSize: "25Mb"
  9. app:
  10. docmgt:
  11. root-folder: /tmp
  12. security:
  13. oauth2:
  14. client:
  15. accessTokenUri: http://localhost:8082/oauth/access_token
  16. userAuthorizationUri: http://localhost:8082/oauth/authorize
  17. clientId: crss
  18. clientSecret: crsssecret
  19. authorized-grant-types: authorization_code,refresh_token,password
  20. scope: openid
  21. access-token-validity-seconds: 3600
  22. resource:
  23. userInfoUri: http://localhost:8082/user
  24. eureka:
  25. client:
  26. serviceUrl:
  27. defaultZone: http://localhost:8761/eureka/
  28. # healthcheck:
  29. # enabled: true
  30. lease:
  31. duration: 5
  32. instance:
  33. leaseRenewalIntervalInSeconds: 1
  34. leaseExpirationDurationInSeconds: 2
  35. feign:
  36. hystrix:
  37. enabled: false
  38. logging:
  39. level:
  40. com.netflix: INFO
  41. org.springframework.cloud: DEBUG
  42. org.springframework.security: DEBUG