crss-admin.yml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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://localhost:8082/oauth/access_token
  13. userAuthorizationUri: http://localhost:8082/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://localhost:8082/user
  21. eureka:
  22. client:
  23. serviceUrl:
  24. defaultZone: http://localhost:8761/eureka/
  25. # healthcheck:
  26. # enabled: true
  27. lease:
  28. duration: 5
  29. instance:
  30. leaseRenewalIntervalInSeconds: 1
  31. leaseExpirationDurationInSeconds: 2
  32. feign:
  33. hystrix:
  34. enabled: false
  35. server:
  36. undertow:
  37. accesslog:
  38. dir: target
  39. enabled: true
  40. pattern: combined
  41. compression:
  42. enabled: true
  43. min-response-size: 1
  44. jackson:
  45. # for further customization please consult the documentation:
  46. # http://docs.spring.io/spring-boot/docs/current-SNAPSHOT/reference/htmlsingle/#howto-customize-the-jackson-objectmapper
  47. # https://github.com/FasterXML/jackson-databind/wiki
  48. # deserialization:
  49. # FAIL_ON_UNKNOWN_PROPERTIES: true
  50. # DEFAULT_VIEW_INCLUSION: true
  51. crss:
  52. ldap:
  53. protocol: "ldaps"
  54. host: "WIN-BJCG9NGATK8.wesmsys.local"
  55. port: 636
  56. root-dn: "dc=wesmsys,dc=local"
  57. user-search-base: ""
  58. admin-user: "wesmsys\\crssadmin"
  59. admin-password: "1qaz@WSX"
  60. username-field: "userPrincipalName"
  61. domain: "wesmsys.local"
  62. embedded: false