crss-admin.yml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. spring:
  2. jpa:
  3. properties:
  4. jadira.usertype.autoRegisterUserTypes: true
  5. hibernate.integration.envers.enabled: true
  6. http:
  7. multipart:
  8. maxFileSize: "25Mb"
  9. maxRequestSize: "25Mb"
  10. security:
  11. oauth2:
  12. client:
  13. accessTokenUri: http://app:8080/admin/oauth/access_token
  14. userAuthorizationUri: http://app:8080/admin/oauth/authorize
  15. clientId: crss
  16. clientSecret: crsssecret
  17. authorized-grant-types: authorization_code,refresh_token,password
  18. scope: openid
  19. access-token-validity-seconds: 3600
  20. resource:
  21. userInfoUri: http://app:8080/admin/user
  22. eureka:
  23. client:
  24. serviceUrl:
  25. defaultZone: http://discovery:8080/eureka/
  26. # healthcheck:
  27. # enabled: true
  28. feign:
  29. hystrix:
  30. enabled: false
  31. server:
  32. undertow:
  33. accesslog:
  34. dir: target
  35. enabled: true
  36. pattern: combined
  37. compression:
  38. enabled: true
  39. min-response-size: 1
  40. jackson:
  41. # for further customization please consult the documentation:
  42. # http://docs.spring.io/spring-boot/docs/current-SNAPSHOT/reference/htmlsingle/#howto-customize-the-jackson-objectmapper
  43. # https://github.com/FasterXML/jackson-databind/wiki
  44. # deserialization:
  45. # FAIL_ON_UNKNOWN_PROPERTIES: true
  46. # DEFAULT_VIEW_INCLUSION: true
  47. crss:
  48. ldap:
  49. protocol: "ldaps"
  50. host: "192.168.241.67"
  51. port: 636
  52. root-dn: "dc=wesmsys,dc=local"
  53. user-search-base: ""
  54. admin-user: "wesmsys\\crssadmin"
  55. admin-password: "1qaz@WSX"
  56. username-field: "userPrincipalName"
  57. domain: "wesmsys.local"
  58. embedded: false