crss-admin.yml 1.5 KB

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