crss-admin.yml 1.6 KB

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